/*
* JFLAP - Formal Languages and Automata Package
*
*
* Susan H. Rodger
* Computer Science Department
* Duke University
* August 27, 2009
* Copyright (c) 2002-2009
* All rights reserved.
* JFLAP is open source software. Please see the LICENSE for terms.
*
*/
package gui.event;
import java.util.EventObject;
/**
* The SelectionEvent
is an event indicating that a selection has
* changed in an object.
*
* @author Thomas Finley
*/
public class SelectionEvent extends EventObject {
/**
* Instantiates a new SelectionEvent
.
*
* @param object
* the generating object, whose selection has changed
*/
public SelectionEvent(Object object) {
super(object);
}
}