blob: 7bd0a87eed6860e7f0f8d6b1bf7686a16adc8290 [file] [log] [blame]
package org.eclipse.swt.events;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
import org.eclipse.swt.widgets.Event;
/**
* Instances of this class are sent as a result of
* operations being performed on shells.
*
* @see ShellListener
*/
public final class ShellEvent extends TypedEvent {
/**
* a flag indicating whether the operation should be allowed
*/
public boolean doit;
public ShellEvent(Event e) {
super(e);
this.doit = e.doit;
}
}