Eclipse Draw2d
2.1

Uses of Class
org.eclipse.draw2d.graph.Node

Packages that use Node
org.eclipse.draw2d.graph   
org.eclipse.draw2d.internal.graph   
 

Uses of Node in org.eclipse.draw2d.graph
 

Subclasses of Node in org.eclipse.draw2d.graph
 class Subgraph
          A Node which may contain other nodes.
 class SubgraphBoundary
           
 class VirtualNode
           
 

Fields in org.eclipse.draw2d.graph declared as Node
 Node VirtualNode.prev
          The previous node.
 Node VirtualNode.next
          The next node.
 Node Subgraph.head
          For internal use only.
 Node Subgraph.tail
          For internal use only.
 Node Subgraph.left
          For internal use only.
 Node Subgraph.right
          For internal use only.
 Node Edge.source
          The source Node.
 Node Edge.target
          The target Node.
 

Methods in org.eclipse.draw2d.graph that return Node
 Node NodeList.getNode(int index)
          Returns the Node at the given index.
 Node Edge.opposite(Node end)
          For internal use only.
 

Methods in org.eclipse.draw2d.graph with parameters of type Node
 void Subgraph.addMember(Node n)
          Adds the given node to this subgraph.
 boolean Subgraph.isNested(Node n)
          For internal use only.
 void Rank.add(Node n)
          Adds a node to this rank.
 boolean Node.isNested(Node node)
          For internal use only.
 Node Edge.opposite(Node end)
          For internal use only.
 Insets DirectedGraph.getPadding(Node node)
          Returns the effective padding for the given node.
 void DirectedGraph.removeNode(Node node)
          Removes the given node from the graph.
 

Constructors in org.eclipse.draw2d.graph with parameters of type Node
Edge(Node source, Node target)
          Constructs a new edge with the given source and target nodes.
Edge(Node source, Node target)
          Constructs a new edge with the given source and target nodes.
Edge(Node source, Node target, int delta, int weight)
          Constructs a new edge with the given source, target, delta, and weight.
Edge(Node source, Node target, int delta, int weight)
          Constructs a new edge with the given source, target, delta, and weight.
Edge(Object data, Node source, Node target)
          Constructs a new edge with the given data object, source, and target node.
Edge(Object data, Node source, Node target)
          Constructs a new edge with the given data object, source, and target node.
 

Uses of Node in org.eclipse.draw2d.internal.graph
 

Fields in org.eclipse.draw2d.internal.graph declared as Node
 Node NodePair.n1
           
 Node NodePair.n2
           
 

Methods in org.eclipse.draw2d.internal.graph with parameters of type Node
static boolean GraphUtilities.willCauseCycle(Node source, Node target)
          Returns true if adding an edge between the 2 given nodes will introduce a cycle in the containing graph.
static boolean GraphUtilities.willCauseCycle(Node source, Node target)
          Returns true if adding an edge between the 2 given nodes will introduce a cycle in the containing graph.
 

Constructors in org.eclipse.draw2d.internal.graph with parameters of type Node
NodePair(Node n1, Node n2)
           
NodePair(Node n1, Node n2)
           
 


Eclipse Draw2d
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.