Uses of Class
com.jgraph.graph.PortView

Packages that use PortView
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. 
com.jgraph.plaf Contains the GraphUI class which extends the Swing ComponentUI class. 
com.jgraph.plaf.basic Contains the BasicGraphUI, which is GraphUI's default implementation. 
 

Uses of PortView in com.jgraph
 

Methods in com.jgraph that return PortView
 PortView JGraph.getPortViewAt(int x, int y)
          Returns the portview at the specified location.
protected  PortView JGraph.createPortView(Port p, CellMapper cm)
          Constructs a PortView view for the specified object.
 

Uses of PortView in com.jgraph.graph
 

Fields in com.jgraph.graph declared as PortView
protected  PortView[] GraphView.ports
           
protected  PortView PortRenderer.view
          Cache the current edgeview for drawing.
protected  PortView EdgeView.source
          Cached source and target portview of the edge.
protected  PortView EdgeView.target
          Cached source and target portview of the edge.
protected  PortView[] VertexView.SizeHandle.portViews
           
 

Methods in com.jgraph.graph that return PortView
 PortView[] GraphView.getPorts()
          Returns the ports of the view.
 PortView EdgeView.getSource()
          Returns the portview that represents the source of the edge.
 PortView EdgeView.getTarget()
          Returns the portview that represents the target of the edge.
 PortView[] GraphContext.createTemporaryPortViews()
          Returns an new consistent array of views for the ports.
 

Methods in com.jgraph.graph with parameters of type PortView
 void EdgeView.setSource(PortView sourceView)
          Sets the sourceView of the edge.
 void EdgeView.setTarget(PortView targetView)
          Sets the targetView of the edge.
protected  void EdgeView.EdgeHandle.paintPort(java.awt.Graphics g, PortView p)
           
 

Uses of PortView in com.jgraph.plaf
 

Methods in com.jgraph.plaf with parameters of type PortView
abstract  void GraphUI.paintPorts(java.awt.Graphics g, PortView[] portViews)
          Paints the renderers of portViews to g.
 

Uses of PortView in com.jgraph.plaf.basic
 

Fields in com.jgraph.plaf.basic declared as PortView
protected  PortView[] BasicGraphUI.RootHandle.portViews
           
 

Methods in com.jgraph.plaf.basic with parameters of type PortView
 void BasicGraphUI.paintPorts(java.awt.Graphics g, PortView[] ports)
          Paint ports.