AbstractTrees

The AbstractTrees superclass is what concrete trees inherit
from.

Complex Type Information

Model

Children: meta, network, set, tree

Attributes

QName Type Fixed Default Use Inheritable Annotation
about URIorSafeCURIE optional
id xs:ID required
label xs:string optional
xml:base xs:anyURI optional
See http://www.w3.org/TR/xmlbase/ for
information about this attribute.
Wildcard: ANY attribute from ANY namespace

Source

<xs:complexType name="AbstractTrees" abstract="true">
  <xs:annotation>
    <xs:documentation>The AbstractTrees superclass is what concrete trees inherit from.</xs:documentation>
  </xs:annotation>
  <xs:complexContent mixed="false">
    <xs:extension base="IDTagged">
      <xs:sequence minOccurs="1" maxOccurs="1">
        <xs:choice minOccurs="0" maxOccurs="unbounded">
          <xs:element name="network" type="AbstractNetwork" minOccurs="1" maxOccurs="unbounded"/>
          <xs:element name="tree" type="AbstractTree" minOccurs="1" maxOccurs="unbounded"/>
        </xs:choice>
        <xs:element name="set" minOccurs="0" maxOccurs="unbounded" type="TreeAndNetworkSet"/>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>