OSPE_NavigatorImageDisplay.java 812 Bytes
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;
	}
		
}