Uses of Interface
com.jgraph.event.GraphModelEvent.GraphModelChange

Packages that use GraphModelEvent.GraphModelChange
com.jgraph.event Contains event classes and listener interfaces that are used to react to events fired by JGraph. 
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 GraphModelEvent.GraphModelChange in com.jgraph.event
 

Fields in com.jgraph.event declared as GraphModelEvent.GraphModelChange
protected  GraphModelEvent.GraphModelChange GraphModelEvent.change
          The object that consistutes the change.
 

Methods in com.jgraph.event that return GraphModelEvent.GraphModelChange
 GraphModelEvent.GraphModelChange GraphModelEvent.getChange()
          Returns the object that constitues the change.
 

Constructors in com.jgraph.event with parameters of type GraphModelEvent.GraphModelChange
GraphModelEvent(java.lang.Object source, GraphModelEvent.GraphModelChange change)
          Used to create an event when cells have been changed, inserted, or removed, identifying the change as a ModelChange object.
 

Uses of GraphModelEvent.GraphModelChange in com.jgraph.graph
 

Classes in com.jgraph.graph that implement GraphModelEvent.GraphModelChange
 class DefaultGraphModel.GraphModelEdit
          An implementation of GraphModelChange that can be added to the model event.
 class DefaultGraphModel.GraphModelLayerEdit
          An implementation of GraphViewChange.
 

Methods in com.jgraph.graph with parameters of type GraphModelEvent.GraphModelChange
 void GraphView.graphChanged(GraphModelEvent.GraphModelChange change)
          Called from BasicGraphUI.ModelHandler to update the view based on the specified GraphModelEvent.
protected  void DefaultGraphModel.fireGraphChanged(java.lang.Object source, GraphModelEvent.GraphModelChange edit)