Project

General

Profile

Download (389 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.taxeditor.store.singlesource.widget;
2

    
3
import org.eclipse.swt.widgets.Display;
4

    
5
public class DisplayProxyImpl extends SessionSingletonBase implements IDisplayProxy {
6

    
7
	private static Display defaultDisplay;
8

    
9
	@Override
10
	public Display getDefault() {
11
		return defaultDisplay;
12
	}
13

    
14
	@Override
15
	public void setDefault( Display display ) {
16
		defaultDisplay = display;
17
	}
18

    
19
}
    (1-1/1)