blob: 2ca717d10a751219d01b70eced48d1c618b7550c [file] [log] [blame]
package org.eclipse.swt.events;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.widgets.Event;
/**
* Instances of this class are sent as a result of
* text being modified.
*
* @see ModifyListener
*/
public final class ModifyEvent extends TypedEvent {
/**
* Constructs a new instance of this class based on the
* information in the given untyped event.
*
* @param e the untyped event containing the information
*/
public ModifyEvent(Event e) {
super(e);
}
}