blob: ae6af6dc1b692b066f1383fb252e1fb655cc26fd [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
* menus being shown and hidden.
*
* @see MenuListener
*/
public final class MenuEvent 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 MenuEvent(Event e) {
super(e);
}
}