Project

General

Profile

Download (430 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.taxeditor.singlesource.org.eclipse.swt.widgets;
2

    
3
import org.eclipse.rwt.SessionSingletonBase;
4
import org.eclipse.swt.widgets.Display;
5

    
6
public class DisplayProxyImpl extends SessionSingletonBase implements IDisplayProxy {
7
	private static Display display;
8
	@Override
9
	public Display getDefault() {
10
		return this.display;
11
	}
12

    
13
	@Override
14
	public void setDefault(Display display) {
15
		this.display = display;
16
	}
17

    
18
}
    (1-1/1)