Class Scorm2004SubMetadata

java.lang.Object
dev.jcputney.elearning.parser.input.scorm2004.ims.cp.Scorm2004SubMetadata
All Implemented Interfaces:
LoadableMetadata, Serializable

public class Scorm2004SubMetadata extends Object implements LoadableMetadata
Represents metadata for a SCORM element, which can either be inline metadata using a LOM element or an external reference to a metadata file.

LOM Example:


 <metadata>
   <lom>
     <general>
       <description>
         <string language="en-us">Metadata description here.</string>
       </description>
     </general>
   </lom>
 </metadata>
 

External Metadata Example:


 <metadata>
   <adlcp:location>metadata.xml</adlcp:location>
 </metadata>
 
See Also:
  • Constructor Details

    • Scorm2004SubMetadata

      public Scorm2004SubMetadata()