Back to project page zmap.
The source code is released under:
GNU Lesser General Public License
If you think the Android project zmap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zmap.geom; // www .j ava2 s.co m /** * @note Editable point collection. */ public interface IPointCollectionEdit extends IPointCollection { /** * @note Append a point to this collection. */ public void addPoint(IPoint point); /** * @note Insert a point to a specified position. */ public void insertPoint(IPoint point, int pos); /** * @note Remove a specified point. */ public void removePoint(int pos); /** * @note Called before other edit methods. */ public void beginEdit(); /** * @note Called after edition is done. */ public void endEdit(); }