OSPE_NavigatorImageDisplay.java
812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package osp.ui;
import java.awt.geom.AffineTransform;
import jsky.navigator.NavigatorImageDisplay;
/**
* Display the loaded image in the interface
*
* @author
*
*/
/**
* Display the loaded image in the interface
*
* @author
*
*/
public class OSPE_NavigatorImageDisplay extends NavigatorImageDisplay {
private static final long serialVersionUID = 1L;
private int state = 0; // 0 empty, 1 loaded, 2 used.
public OSPE_NavigatorImageDisplay(){
super();
}
@Override
public AffineTransform getAffineTransform() {
return super.getAffineTransform();
}
/**
* @return the state
*/
public int getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(int state) {
this.state = state;
}
}