http://graphml.graphdrawing.org/xmlns/graphml
complexType data.type

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://graphml.graphdrawing.org/xmlns/graphml}data-extension.type (restriction)
|
+--{http://graphml.graphdrawing.org/xmlns/graphml}data.type (extension)

Documentation
Complex type for the <data> element. data.type is mixed, that is, <data> may contain #PCDATA. Content type: extension of data-extension.type which is empty per default. user defined extra attributes for <data> elements
Properties
This component is not nillable.

Model
<...
  id = xs:NMTOKEN
  key = xs:NMTOKEN>

</...>


Attribute Summary
 xs:NMTOKENid
          identifies this <data>.  
 xs:NMTOKENkey
          refers to the id attribute of a <key>.  

Attribute Detail

id

identifies this <data>.

Type:
xs:NMTOKEN
Use:
optional
Form:
unqualified

key

refers to the id attribute of a <key>.

Type:
xs:NMTOKEN
Use:
required
Form:
unqualified

Source
<xs:complexType final="#all" name="data.type">
<xs:complexContent mixed="true">
<xs:extension base="data-extension.type">
<xs:attribute name="key" type="xs:NMTOKEN" use="required">
</xs:attribute>
<xs:attribute name="id" type="xs:NMTOKEN" use="optional">
</xs:attribute>
<xs:attributeGroup ref="data.extra.attrib">
</xs:attributeGroup>
</xs:extension>
</xs:complexContent>
</xs:complexType>


© Copyright 2000-2009, yWorks GmbH. All rights reserved.