blob: 9019a4f73b4d4c79e062e104b8f6ef14a9a51f72 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.api;
import junit.framework.Assert;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IStartup;
public class StartupClass implements IStartup {
/**
* This boolean should only be true if the earlyStartup() method
* has been called.
*/
private static boolean earlyStartupCalled = false;
/**
* This boolean should only be true if the earlyStartup() method
* has completed.
*/
private static boolean earlyStartupCompleted = false;
/* (non-Javadoc)
* @see org.eclipse.ui.IStartup#earlyStartup()
*/
public void earlyStartup() {
earlyStartupCalled = true;
Assert.assertNull("IStartup should run in non-UI thread", Display.getCurrent());
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// ignore
}
earlyStartupCompleted = true;
}
public static boolean getEarlyStartupCalled() {
return earlyStartupCalled;
}
public static boolean getEarlyStartupCompleted() {
return earlyStartupCompleted;
}
/**
* Reset the flags.
*/
public static void reset() {
earlyStartupCalled = false;
earlyStartupCompleted = false;
}
}