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

public class LangString extends Object implements Serializable
Represents a LangString in LOM metadata, which is a collection of strings with language attributes. This type is used for fields such as title, description, and keyword.

 <xs:complexType name="LangString">
   <xs:choice minOccurs="0" maxOccurs="unbounded">
     <xs:element name="string" type="langString"/>
     <xs:group ref="ex:customElements"/>
   </xs:choice>
 </xs:complexType>

 <xs:complexType name="langString">
   <xs:simpleContent>
     <xs:extension base="CharacterString">
       <xs:attribute name="language" type="LanguageId"/>
     </xs:extension>
   </xs:simpleContent>
 </xs:complexType>
 
See Also:
  • Constructor Details

    • LangString

      public LangString()