blob: b3cfe71764129e4befe248dfa353ecf71c71cc06 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.rt.ui.swt;
import java.util.EventObject;
/**
* <h3>EnvironmentEvent</h3> ...
*
* @since 1.0.0 10.03.2008
*/
public class SwtEnvironmentEvent extends EventObject {
public static final int INACTIVE = 0x00;
public static final int STARTING = 0x01;
public static final int STARTED = 0x02;
public static final int STOPPING = 0x04;
public static final int STOPPED = 0x08;
private static final long serialVersionUID = 1L;
private final int m_type;
public SwtEnvironmentEvent(Object source, int type) {
super(source);
m_type = type;
}
public int getType() {
return m_type;
}
}