Project

General

Profile

« Previous | Next » 

Revision 6169c515

Added by Niels Hoffmann over 12 years ago

View differences:

eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/singlesource/org/eclipse/jface/text/PositionFacade.java
5 5

  
6 6
import javax.naming.OperationNotSupportedException;
7 7

  
8
import org.eclipse.swt.widgets.Composite;
9
import org.eclipse.ui.forms.widgets.TableWrapData;
10

  
11
import eu.etaxonomy.taxeditor.editor.EditorUtil;
12
import eu.etaxonomy.taxeditor.preference.Resources;
13 8
import eu.etaxonomy.taxeditor.singlesource.ImplementationLoader;
14
import eu.etaxonomy.taxeditor.singlesource.editor.name.container.INameViewer;
15
import eu.etaxonomy.taxeditor.singlesource.editor.name.container.NameViewerFacade;
16 9

  
17 10
/**
18 11
 * @author lusu
......
30 23
		IMPL = (IPosition)ImplementationLoader.newInstance(PositionFacade.class);
31 24
	}
32 25

  
33
	public PositionFacade(int offset) throws OperationNotSupportedException {
26
	public PositionFacade(Integer offset) throws OperationNotSupportedException {
34 27
		IMPL = (IPosition)ImplementationLoader.newInstance(PositionFacade.class, offset);
35 28
	}
36 29

  
37
	public PositionFacade(int offset, int length) throws OperationNotSupportedException {
30
	public PositionFacade(Integer offset, Integer length) throws OperationNotSupportedException {
38 31
		IMPL = (IPosition)ImplementationLoader.newInstance(PositionFacade.class, offset, length);
39 32
	}
40 33

  

Also available in: Unified diff