Class PackageProperties

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

public class PackageProperties extends Object implements Serializable

Class representing the root element of the ScormEnginePackageProperties XML.

The following schema snippet is the root declaration of the XSD:


 <xs:element name="ScormEnginePackageProperties">
   <xs:complexType>
     <xs:all>
       <xs:element name="controls" type="controlsSpec" minOccurs="0" maxOccurs="1" />
       <xs:element name="appearance" type="appearanceSpec" minOccurs="0" maxOccurs="1" />
       <xs:element name="appearence" type="appearanceSpec" minOccurs="0" maxOccurs="1" />
       <xs:element name="behavior" type="behaviorSpec" minOccurs="0" maxOccurs="1" />
       <xs:element name="rsop" type="rsopSpec" minOccurs="0" maxOccurs="1" />
       <xs:element name="heuristics" type="heuristicSpec" minOccurs="0" maxOccurs="1" />
     </xs:all>
   </xs:complexType>
 </xs:element>
 
See Also:
  • Field Details

    • NAMESPACE_URI

      public static final String NAMESPACE_URI
      The namespace URI for the ScormEnginePackageProperties XML.
      See Also:
  • Constructor Details

    • PackageProperties

      public PackageProperties()