blob: 81ad33e31a94ea408d5fcb7b11ecaaf1a68b6048 [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
* help being requested for a widget.
*
* @see HelpListener
*/
public final class HelpEvent 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 HelpEvent(Event e) {
super(e);
}
}