AbstractNetwork

The AbstractNetwork superclass is what a concrete network inherits
from.

Complex Type Information

Model

Children: edge, meta, node, set

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

Used By

Source

<xs:complexType name="AbstractNetwork" abstract="true" sawsdl:modelReference="http://evolutionaryontology-dev.nescent.org/cdao.owl#Network">
  <xs:annotation>
    <xs:documentation>The AbstractNetwork superclass is what a concrete network inherits from.</xs:documentation>
  </xs:annotation>
  <xs:complexContent mixed="false">
    <xs:extension base="IDTagged">
      <xs:sequence minOccurs="1" maxOccurs="1">
        <xs:element name="node" type="AbstractNode" minOccurs="1" maxOccurs="unbounded"/>
        <xs:element name="edge" type="AbstractEdge" minOccurs="1" maxOccurs="unbounded"/>
        <xs:element name="set" minOccurs="0" maxOccurs="unbounded" type="NodeAndRootEdgeAndEdgeSet"/>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>