Uses of Interface
com.jgraph.graph.CellMapper

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

Methods in com.jgraph with parameters of type CellMapper
 CellView JGraph.createView(java.lang.Object cell, CellMapper map)
          Constructs a view for the specified cell and associates it with the specified object using the specified CellMapper.
protected  VertexView JGraph.createVertexView(java.lang.Object v, CellMapper cm)
          Constructs a VertexView view for the specified object.
protected  EdgeView JGraph.createEdgeView(Edge e, CellMapper cm)
          Constructs an EdgeView view for the specified object.
protected  PortView JGraph.createPortView(Port p, CellMapper cm)
          Constructs a PortView view for the specified object.
 

Uses of CellMapper in com.jgraph.graph
 

Classes in com.jgraph.graph that implement CellMapper
 class GraphContext
           
 class GraphView
          An object that defines the view of a graphmodel.
 

Fields in com.jgraph.graph declared as CellMapper
protected  CellMapper GraphView.mapper
           
protected  CellMapper AbstractCellView.mapper
          Reference to the cell mapper for the view
 

Methods in com.jgraph.graph that return CellMapper
 CellMapper AbstractCellView.getMapper()
          Returns the cell mapper associated with the view.
 

Methods in com.jgraph.graph with parameters of type CellMapper
 CellView CellViewFactory.createView(java.lang.Object cell, CellMapper map)
          Constructs a view for the specified cell and associates it with the specified object using the specified CellMapper.
static java.util.Map GraphConstants.createAttributeMap(CellView[] views, CellMapper cm)
          Returns a new map, from CellViews to maps, which in turn map from keys to values.
static java.util.Map GraphConstants.createPropertyMap(java.lang.Object[] elements, CellMapper cm)
          Returns a new map, from cells to property maps.
 

Constructors in com.jgraph.graph with parameters of type CellMapper
AbstractCellView(java.lang.Object cell, JGraph graph, CellMapper mapper)
          Constructs a view for the specified model object, and invokes update on the new instance.
EdgeView(java.lang.Object cell, JGraph graph, CellMapper mapper)
          Constructs an edge view for the specified model object.
VertexView(java.lang.Object cell, JGraph graph, CellMapper mapper)
          Constructs a vertex view for the specified model object and the specified child views.
PortView(java.lang.Object cell, JGraph graph, CellMapper mapper)
          Constructs a view that holds a reference to the specified cell, anchor and parent vertex.