blob: 12b9e67a7c3b18b9a5a277c16b074de06ea8cde6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002-2006 Innoopract Informationssysteme GmbH.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.swt.internal.lifecycle;
import org.eclipse.swt.lifecycle.DisplayUtil;
import org.eclipse.swt.widgets.Display;
import com.w4t.engine.lifecycle.PhaseId;
final class ReadData implements IPhase {
public PhaseId getPhaseID() {
return PhaseId.READ_DATA;
}
public PhaseId execute() {
Display display = Display.getCurrent();
DisplayUtil.getLCA( display ).readData( display );
return PhaseId.PROCESS_ACTION;
}
}