Package uk.ac.man.cs.mig.util.graph.event

Examples of uk.ac.man.cs.mig.util.graph.event.GraphSelectionModelEvent


  /**
   * Propagates selection events to listeners.
   */
  protected void fireNodeSelectionChangedEvent()
  {
    GraphSelectionModelEvent evt = new GraphSelectionModelEvent(this);

    for(int i = 0; i < listeners.size(); i++)
    {
      ((GraphSelectionModelListener)listeners.get(i)).selectionChanged(evt);
    }
View Full Code Here


  public DefaultGraphSelectionModel()
  {
    listeners = new ArrayList();

    evt = new GraphSelectionModelEvent(this);

    selObj = null;

  }
View Full Code Here

TOP

Related Classes of uk.ac.man.cs.mig.util.graph.event.GraphSelectionModelEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.