blob: 2e149851633484df10f70806bfeed3327e49a243 [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
* widgets gaining and losing focus.
*
* @see FocusListener
*/
public final class FocusEvent 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 FocusEvent(Event e) {
super(e);
}
}