blob: bcf47de09effb1094b448cab1228a6f02af1d8ef [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
* a widget such as a menu item being armed.
*
* @see ArmListener
*/
public final class ArmEvent 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 ArmEvent(Event e) {
super(e);
}
}