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

public class TaxonPath extends Object implements Serializable
Represents a taxon path in the Learning Object Metadata (LOM) schema. A taxon path defines a hierarchical classification or categorization of a learning object, consisting of a source and a list of taxa.

Schema snippet:


 <xs:complexType name="taxonPath">
   <xs:choice minOccurs="0" maxOccurs="unbounded">
     <xs:group ref="source"/>
     <xs:group ref="taxon"/>
     <xs:group ref="ex:customElements"/>
   </xs:choice>
   <xs:attributeGroup ref="ag:taxonPath"/>
 </xs:complexType>
 
See Also:
  • Constructor Details

    • TaxonPath

      public TaxonPath()