Uses of Class
com.jgraph.graph.ParentMap

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

Fields in com.jgraph.graph declared as ParentMap
protected  ParentMap DefaultGraphModel.GraphModelEdit.parentMap
           
 

Methods in com.jgraph.graph that return ParentMap
static ParentMap ParentMap.create(GraphModel m, java.lang.Object[] c, boolean remove)
          Returns a parent map that represents the insertion or removal of cells in model based on remove.
protected  ParentMap DefaultGraphModel.handleParentMap(ParentMap parentMap)
          Applies cells to the model.
 

Methods in com.jgraph.graph with parameters of type ParentMap
 void GraphModel.insert(java.lang.Object[] roots, ConnectionSet cs, ParentMap pm, java.util.Map attributeMap)
          Inserts the cells and connections into the model, and passes attributeMap to the views.
 void GraphModel.edit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] e)
          Applies the propertyMap and the connection changes to the model.
 void DefaultGraphModel.insert(java.lang.Object[] roots, ConnectionSet cs, ParentMap pm, java.util.Map attributeMap)
          Inserts the cells and connections into the model, and passes attributeMap to the views.
 void DefaultGraphModel.edit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] edits)
          Applies the propertyMap and the connection changes to the model.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createInsertEdit(java.lang.Object[] cells, ConnectionSet cs, ParentMap pm, java.util.Map propertyMap, java.util.Map attributeMap)
          Returns an edit that represents an insert.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createCellEdit(ConnectionSet cs, java.util.Map propertyMap, ParentMap pm, javax.swing.undo.UndoableEdit[] edits)
          Returns an edit that represents a change.
protected  DefaultGraphModel.GraphModelEdit DefaultGraphModel.createEdit(java.lang.Object[] inserted, java.lang.Object[] removed, java.util.Map attributes, java.util.Map properties, ConnectionSet cs, ParentMap pm)
           
protected  ParentMap DefaultGraphModel.handleParentMap(ParentMap parentMap)
          Applies cells to the model.
 

Constructors in com.jgraph.graph with parameters of type ParentMap
DefaultGraphModel.GraphModelEdit(java.lang.Object[] removed, ConnectionSet cs, ParentMap parentMap)
          Constructs an edit that represents a remove.
DefaultGraphModel.GraphModelEdit(java.lang.Object[] inserted, ConnectionSet cs, ParentMap parentMap, java.util.Map attributeMap)
          Constructs an edit that represents an insert.
DefaultGraphModel.GraphModelEdit(ConnectionSet cs, java.util.Map propertyMap, ParentMap parentMap)
          Constructs an edit that represents a change.
DefaultGraphModel.GraphModelEdit(java.lang.Object[] inserted, java.lang.Object[] removed, ConnectionSet connectionSet, java.util.Map propertyMap, ParentMap parentMap, java.util.Map attributeMap)
          Constructs an edit record.