Project

General

Profile

Download (693 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.singlesource.org.eclipse.jface.text;
5

    
6
import javax.naming.OperationNotSupportedException;
7

    
8
/**
9
 * @author lusu
10
 *
11
 */
12
public class PositionFacadeImpl implements IPosition {
13
	public PositionFacadeImpl() throws OperationNotSupportedException {
14
		throw new OperationNotSupportedException("Position not supported.");
15
	}
16

    
17
	public PositionFacadeImpl(Integer offset) throws OperationNotSupportedException {
18
		throw new OperationNotSupportedException("Position not supported.");
19
	}
20

    
21
	public PositionFacadeImpl(Integer offset, Integer length) throws OperationNotSupportedException {
22
		throw new OperationNotSupportedException("Position not supported.");
23
	}
24
}
    (1-1/1)