Uses of Interface
com.jgraph.event.GraphSelectionListener

Packages that use GraphSelectionListener
com.jgraph JGraph's topmost package which contains the JGraph class. 
com.jgraph.graph Graphs are made up of a number of classes and interfaces defined in their own package - the jgraph.graph package. 
com.jgraph.plaf.basic Contains the BasicGraphUI, which is GraphUI's default implementation. 
 

Uses of GraphSelectionListener in com.jgraph
 

Classes in com.jgraph that implement GraphSelectionListener
protected  class JGraph.GraphSelectionRedirector
          Handles creating a new GraphSelectionEvent with the JGraph as the source and passing it off to all the listeners.
 

Methods in com.jgraph with parameters of type GraphSelectionListener
 void JGraph.addGraphSelectionListener(GraphSelectionListener tsl)
          Adds a listener for GraphSelection events.
 void JGraph.removeGraphSelectionListener(GraphSelectionListener tsl)
          Removes a GraphSelection listener.
 

Uses of GraphSelectionListener in com.jgraph.graph
 

Classes in com.jgraph.graph that implement GraphSelectionListener
 class DefaultGraphCellEditor
          A GraphCellEditor.
 

Methods in com.jgraph.graph with parameters of type GraphSelectionListener
 void DefaultGraphSelectionModel.addGraphSelectionListener(GraphSelectionListener x)
          Adds x to the list of listeners that are notified each time the set of selected TreePaths changes.
 void DefaultGraphSelectionModel.removeGraphSelectionListener(GraphSelectionListener x)
          Removes x from the list of listeners that are notified each time the set of selected TreePaths changes.
 void GraphSelectionModel.addGraphSelectionListener(GraphSelectionListener x)
          Adds x to the list of listeners that are notified each time the set of selected Objects changes.
 void GraphSelectionModel.removeGraphSelectionListener(GraphSelectionListener x)
          Removes x from the list of listeners that are notified each time the set of selected Objects changes.
 

Uses of GraphSelectionListener in com.jgraph.plaf.basic
 

Classes in com.jgraph.plaf.basic that implement GraphSelectionListener
 class BasicGraphUI.GraphSelectionHandler
          Listens for changes in the selection model and updates the display accordingly.
 

Fields in com.jgraph.plaf.basic declared as GraphSelectionListener
protected  GraphSelectionListener BasicGraphUI.graphSelectionListener
          Updates the display when the selection changes.
 

Methods in com.jgraph.plaf.basic that return GraphSelectionListener
protected  GraphSelectionListener BasicGraphUI.createGraphSelectionListener()
          Creates the listener that updates the display based on selection change methods.