Revision 1450 branches/pilotoDWG/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/AbstractHandler.java

View differences:

AbstractHandler.java
51 51
public abstract class AbstractHandler implements Handler {
52 52
	protected int index;
53 53
	protected Point2D point;
54
	private boolean select=false;
54 55

  
55 56
	/**
56 57
	 * DOCUMENT ME!
......
60 61
	public Point2D getPoint() {
61 62
		return point;
62 63
	}
64
	
65
	public void select(boolean b) {
66
	 select=b;
67
	}
68
	public boolean isSelected(){
69
		return select;
70
	}
63 71
}

Also available in: Unified diff