Revision 20098 trunk/applications/appgvSIG/src/com/iver/cit/gvsig/project/documents/view/toolListeners/PolygonSelectListener.java

View differences:

PolygonSelectListener.java
48 48

  
49 49

  
50 50
/**
51
 * Inherits from PolygonSelectionListener (FMap) to be able of calling methods
52
 * from Andami (enableControls)
51
 * <p>Inherits {@link PolygonSelectionListener PolygonSelectionListener} enabling/disabling special
52
 *  controls for managing the data selected.</p>
53 53
 *
54
 * @see PolygonSelectionListener
55
 *
54 56
 * @author Vicente Caballero Navarro
55 57
 */
56 58
public class PolygonSelectListener extends PolygonSelectionListener {
57 59
	/**
58
	 * DOCUMENT ME!
60
 	 * <p>Creates a new <code>PolygonSelectListener</code> object.</p>
59 61
	 *
60
	 * @param mapCtrl
62
	 * @param mapCtrl the <code>MapControl</code> where is drawn the polyline
61 63
	 */
62 64
	public PolygonSelectListener(MapControl mapCtrl) {
63 65
		super(mapCtrl);
64 66
	}
65 67

  
68
	/*
69
	 * (non-Javadoc)
70
	 * @see com.iver.cit.gvsig.fmap.tools.PolygonSelectionListener#polylineFinished(com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent)
71
	 */
66 72
	public void polylineFinished(MeasureEvent event) throws BehaviorException {
67 73
		super.polylineFinished(event);
68 74
		PluginServices.getMainFrame().enableControls();
69 75
	}
70

  
71 76
}

Also available in: Unified diff