java.lang.Object
dev.jcputney.elearning.parser.input.cmi5.types.TextType
All Implemented Interfaces:
Serializable

public class TextType extends Object implements Serializable
Represents a localized text element, supporting multiple languages via langstring elements.

Defined in the schema as:


 <xs:complexType name="textType">
   <xs:sequence>
     <xs:element name="langstring" maxOccurs="unbounded" minOccurs="1">
       <xs:complexType>
         <xs:simpleContent>
           <xs:extension base="xs:string">
             <xs:attribute name="lang" type="xs:language"/>
             <xs:attributeGroup ref="anyAttribute"/>
           </xs:extension>
         </xs:simpleContent>
       </xs:complexType>
     </xs:element>
     <xs:group ref="anyElement"/>
   </xs:sequence>
   <xs:attributeGroup ref="anyAttribute"/>
 </xs:complexType>
 
See Also:
  • Constructor Details

    • TextType

      public TextType()