Uses of Interface
com.jgraph.graph.Port

Packages that use Port
com.jgraph JGraph's topmost package which contains the JGraph class. 
com.jgraph.graph Graphs are made up of a number of classes and interfaces defined in their own package - the jgraph.graph package. 
 

Uses of Port in com.jgraph
 

Methods in com.jgraph that return Port
 Port JGraph.getPortForLocation(int x, int y)
          Convenience method to return the port at the specified location.
 

Methods in com.jgraph with parameters of type Port
protected  PortView JGraph.createPortView(Port p, CellMapper cm)
          Constructs a PortView view for the specified object.
 

Uses of Port in com.jgraph.graph
 

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

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

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

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

Constructors in com.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(java.lang.Object userObject, Port anchor)
          Constructs a vertex that holds a reference to the specified user object and a reference to the specified anchor.