Class Scorm12Dependency
java.lang.Object
dev.jcputney.elearning.parser.input.scorm12.ims.cp.Scorm12Dependency
- All Implemented Interfaces:
Serializable
Represents a dependency within SCORM 1.2 resource.
A dependency specifies a resource required by the parent resource. This is commonly used to define external files, such as images, scripts, or other assets, that must be loaded for the parent resource to function correctly.
Schema Snippet:
<xsd:element name="dependency">
<xsd:complexType>
<xsd:attribute name="identifierref" type="xsd:IDREF" use="required"/>
</xsd:complexType>
</xsd:element>
Example Usage in imsmanifest.xml:
<resource identifier="resource_1" type="webcontent" adlcp:scormType="sco">
<file href="index.html"/>
<dependency identifierref="resource_2"/>
</resource>
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Scorm12Dependency
public Scorm12Dependency()
-