|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2002, 2007 Innoopract Informationssysteme GmbH. |
2 |
* Copyright (c) 2002, 2011 Innoopract Informationssysteme GmbH. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 7-27
Link Here
|
| 7 |
* |
7 |
* |
| 8 |
* Contributors: |
8 |
* Contributors: |
| 9 |
* Innoopract Informationssysteme GmbH - initial API and implementation |
9 |
* Innoopract Informationssysteme GmbH - initial API and implementation |
|
|
10 |
* EclipseSource - ongoing development |
| 10 |
******************************************************************************/ |
11 |
******************************************************************************/ |
| 11 |
|
|
|
| 12 |
package org.eclipse.rwt.internal.lifecycle; |
12 |
package org.eclipse.rwt.internal.lifecycle; |
| 13 |
|
13 |
|
| 14 |
import java.io.IOException; |
14 |
import java.io.IOException; |
| 15 |
|
15 |
|
| 16 |
import org.eclipse.rwt.lifecycle.ILifeCycleAdapter; |
16 |
import org.eclipse.rwt.lifecycle.ILifeCycleAdapter; |
| 17 |
import org.eclipse.swt.graphics.Device; |
|
|
| 18 |
import org.eclipse.swt.widgets.Display; |
17 |
import org.eclipse.swt.widgets.Display; |
| 19 |
|
18 |
|
| 20 |
|
19 |
|
| 21 |
public interface IDisplayLifeCycleAdapter extends ILifeCycleAdapter { |
20 |
public interface IDisplayLifeCycleAdapter extends ILifeCycleAdapter { |
| 22 |
|
|
|
| 23 |
void preserveValues( Display display ); |
21 |
void preserveValues( Display display ); |
| 24 |
void readData( Display display ); |
22 |
void readData( Display display ); |
| 25 |
void processAction( Device display ); |
|
|
| 26 |
void render( Display display ) throws IOException; |
23 |
void render( Display display ) throws IOException; |
| 27 |
} |
24 |
} |