Uses of Class
netkit.graph.Attributes

Packages that use Attributes
netkit.graph   
 

Uses of Attributes in netkit.graph
 

Methods in netkit.graph that return Attributes
 Attributes[] Graph.getAllAttributes()
          Gets an array of Attributes containing the node types in this graph.
 Attributes Node.getAttributes()
          Get the Attributes container detailing the attributes contained within this node.
 Attributes Graph.getAttributes(java.lang.String nodeType)
          Get the Attributes container matching the string provided.
 

Methods in netkit.graph with parameters of type Attributes
 void Graph.addAttributes(Attributes a)
          Adds the supplied Attributes container (or node type) to this Graph; Attributes must be added to the Graph before Nodes that utilize them can be added.
 Node Graph.addNode(java.lang.String nodeName, Attributes a)
          Adds a new Node to the Graph using the supplied node name and Attributes container.
 Node[] Graph.getNodes(Attributes attrs)
          Gets all of the Nodes whose Attributes container matches the supplied parameter.
 

Constructors in netkit.graph with parameters of type Attributes
AttributeCategoricalMetaInfo(AttributeCategorical attrib, Attributes attributes, Graph graph)
          Construct an object of this type.
AttributeMetaInfo(Attribute attrib, Attributes attributes, Graph graph)
          Construct an object of this type.
Node(java.lang.String name, Attributes attributes, int index)
          The constructor must be provided with a name, an Attributes container and an index.