http://graphml.graphdrawing.org/xmlns/graphml
element node

Documentation
Description: Describes one node in the <graph> containing this <node>. Occurence: <graph>. Ensures: existence and uniqueness of the name attributes of each <port> element within this <node>. Ensures: uniqueness of the key attributes of <data> children of this <node> element.
Properties
This component is not nillable.

Model
<node
  id = xs:NMTOKEN>
(desc?, (((data | port)* , graph?) | locator) )
</node>


Nested Element Summary
 data
          
 desc
          
 graph
          
 locator
          
 port
          

Attribute Summary
 xs:NMTOKENid
           identifies this node.  

Attribute Detail

id

identifies this node.

Type:
xs:NMTOKEN
Use:
required
Form:
unqualified

Source
<xs:element block="#all" name="node" type="node.type">
<xs:key name="port_name_key">
<xs:selector xpath=".//g:port"/>
<xs:field xpath="@name"/>
</xs:key>
<xs:unique name="node_data_key_unique">
<xs:selector xpath="./g:data"/>
<xs:field xpath="@key"/>
</xs:unique>
</xs:element>


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