Uses of Interface
org.jgraph.graph.CellMapper

Packages that use CellMapper
org.jgraph   
org.jgraph.graph   
 

Uses of CellMapper in org.jgraph
 

Methods in org.jgraph with parameters of type CellMapper
protected  EdgeView JGraph.createEdgeView(Edge e, CellMapper cm)
          Deprecated. replaced by JGraph.createEdgeView(Object,CellMapper) since JGraph no longer exposes dependecies on GraphCell subclasses (Port, Edge)
protected  EdgeView JGraph.createEdgeView(Object e, CellMapper cm)
          Constructs an EdgeView view for the specified object.
protected  PortView JGraph.createPortView(Object p, CellMapper cm)
          Constructs a PortView view for the specified object.
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)
protected  VertexView JGraph.createVertexView(Object v, CellMapper cm)
          Constructs a VertexView view for the specified object.
 CellView JGraph.createView(Object cell, CellMapper map)
          Constructs a view for the specified cell and associates it with the specified object using the specified CellMapper.
 

Uses of CellMapper in org.jgraph.graph
 

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

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

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

Methods in org.jgraph.graph with parameters of type CellMapper
static Map GraphConstants.createAttributes(Object[] elements, CellMapper cm)
          Returns a new map, from cells to property maps.
 CellView CellViewFactory.createView(Object cell, CellMapper map)
          Constructs a view for the specified cell and associates it with the specified object using the specified CellMapper.
 

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