org.jgraph.graph
Interface CellMapper
- GraphContext, GraphLayoutCache
public interface CellMapper
Defines the requirements for objects that may be used as a cell mapper. A
cell mapper is able to return the view of a cell, given a reference to that
cell object. It is basically a cell to cell view mapping
CellView | getMapping(Object cell, boolean create)- Returns the view that is associated with
cell.
|
void | putMapping(Object cell, CellView view)- Inserts the association between
cell and view.
|
getMapping
public CellView getMapping(Object cell,
boolean create) Returns the view that is associated with cell.
create - whether a new view should created if a view does not already
exist
putMapping
public void putMapping(Object cell,
CellView view) Inserts the association between cell and view.
cell - the cell that constitutes the model elementview - the view that constitutes the view element
Copyright (C) 2001-2008 Gaudenz Alder. All rights reserved.