blob: 27fec74324e553a81fdbf621ee8dd11b5002671e [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 java.io.IOException;
import org.eclipse.swt.lifecycle.ILifeCycleAdapter;
import org.eclipse.swt.widgets.Display;
/**
* TODO [rh] JavaDoc
* <p></p>
*/
public interface IDisplayLifeCycleAdapter extends ILifeCycleAdapter {
void preserveValues( Display display );
void readData( Display display );
void processAction( Display display );
void render( Display display ) throws IOException;
}