Uses of Interface
org.jgraph.graph.Port

Packages that use Port
org.jgraph   
org.jgraph.graph   
 

Uses of Port in org.jgraph
 

Methods in org.jgraph with parameters of type Port
protected  PortView JGraph.createPortView(Port p, CellMapper cm)
          Deprecated. replaced by JGraph.createPortView(Object,CellMapper) since JGraph no longer exposes dependecies on GraphCell subclasses (Port, Edge)
 

Uses of Port in org.jgraph.graph
 

Classes in org.jgraph.graph that implement Port
 class DefaultPort
          A simple implementation for a port.
 

Fields in org.jgraph.graph declared as Port
protected  Port DefaultPort.anchor
          Reference to the anchor of this port
 

Methods in org.jgraph.graph that return Port
 Port Port.getAnchor()
          Returns the anchor of the port.
 Port DefaultPort.getAnchor()
          Returns the anchor of this port.
 

Methods in org.jgraph.graph with parameters of type Port
 void Port.setAnchor(Port port)
          Sets the anchor of the port.
 void DefaultPort.setAnchor(Port port)
          Sets the anchor of this port.
 

Constructors in org.jgraph.graph with parameters of type Port
ConnectionSet(Edge edge, Port port, boolean source)
          Constructs a ConnectionSet with one Connection.
ConnectionSet(Edge edge, Port source, Port target)
          Constructs a ConnectionSet with two Connections (to the source and target port of the edge).
DefaultPort(Object userObject, Port anchor)
          Constructs a vertex that holds a reference to the specified user object and a reference to the specified anchor.