java.lang.Object
dev.jcputney.elearning.parser.input.lom.General
All Implemented Interfaces:
Serializable

public class General extends Object implements Serializable
Represents the general element in the LOM schema, which provides general information about a learning object. This includes its identifiers, titles, language, descriptions, keywords, and other general metadata.

The following schema snippet defines the general element:


 <xs:complexType name="general">
   <xs:choice minOccurs="0" maxOccurs="unbounded">
     <xs:group ref="identifier"/>
     <xs:group ref="title"/>
     <xs:group ref="languageIdOrNone"/>
     <xs:group ref="descriptionUnbounded"/>
     <xs:group ref="keyword"/>
     <xs:group ref="coverage"/>
     <xs:group ref="structure"/>
     <xs:group ref="aggregationLevel"/>
     <xs:group ref="ex:customElements"/>
   </xs:choice>
   <xs:attributeGroup ref="ag:general"/>
 </xs:complexType>
 
See Also:
  • Constructor Details

    • General

      public General()