Uses of Interface
com.jgraph.graph.CellHandle

Packages that use CellHandle
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 CellHandle in com.jgraph.graph
 

Classes in com.jgraph.graph that implement CellHandle
 class EdgeView.EdgeHandle
           
 class VertexView.SizeHandle
           
 

Methods in com.jgraph.graph that return CellHandle
 CellHandle CellView.getHandle(GraphContext context)
          Returns a cell handle for the view.
abstract  CellHandle AbstractCellView.getHandle(GraphContext context)
          Returns a cell handle for the view.
 CellHandle EdgeView.getHandle(GraphContext context)
          Returns a cell handle for the view.
 CellHandle VertexView.getHandle(GraphContext context)
          Returns a cell handle for the view, if the graph and the view are sizeable.
 CellHandle PortView.getHandle(GraphContext context)
          Returns null.
 

Uses of CellHandle in com.jgraph.plaf
 

Methods in com.jgraph.plaf that return CellHandle
abstract  CellHandle GraphUI.getHandle(JGraph graph)
          Returns the CellHandle that is currently active, or null if no handle is active.
 

Uses of CellHandle in com.jgraph.plaf.basic
 

Classes in com.jgraph.plaf.basic that implement CellHandle
 class BasicGraphUI.RootHandle
           
 

Fields in com.jgraph.plaf.basic declared as CellHandle
protected  CellHandle BasicGraphUI.handle
          Handle that we are going to use.
protected  CellHandle[] BasicGraphUI.RootHandle.handles
           
protected  CellHandle BasicGraphUI.RootHandle.activeHandle
          The handle that consumed the last mousePressedEvent.
 

Methods in com.jgraph.plaf.basic that return CellHandle
 CellHandle BasicGraphUI.getHandle(JGraph graph)
          Returns the handle that is currently active, or null, if no handle is currently active.
 CellHandle BasicGraphUI.createHandle(GraphContext context)
          Constructs the "root handle" for context.