uci.graph
Interface GraphListener

All Known Implementing Classes:
Diagram, LayerPerspective

public abstract interface GraphListener
extends EventListener

This defines a set of event notifications that objects can register for if they are interested in changes to the connected graph. For example, LayerPerspective implements this interface to update the Figs it contains whenever a node or edge is added or removed from the GraphModel.

See Also:
LayerPerspective

Method Summary
 void edgeAdded(GraphEvent e)
           
 void edgeRemoved(GraphEvent e)
           
 void graphChanged(GraphEvent e)
           
 void nodeAdded(GraphEvent e)
           
 void nodeRemoved(GraphEvent e)
           
 

Method Detail

nodeAdded

public void nodeAdded(GraphEvent e)

edgeAdded

public void edgeAdded(GraphEvent e)

nodeRemoved

public void nodeRemoved(GraphEvent e)

edgeRemoved

public void edgeRemoved(GraphEvent e)

graphChanged

public void graphChanged(GraphEvent e)