Package com.luciad.symbology.app6a.model
Interface ILcdEditableRestrictedLengthPointList
- All Superinterfaces:
ILcd2DEditablePointList
,ILcdPointList
,ILcdRestrictedLengthPointList
,Serializable
public interface ILcdEditableRestrictedLengthPointList
extends ILcdRestrictedLengthPointList, ILcd2DEditablePointList
Interface for editing restricted length point lists.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setMinPointCount
(int aMaxPointCount) Sets the number of points this point list should have at least.Methods inherited from interface com.luciad.shape.shape2D.ILcd2DEditablePointList
append2DPoint, insert2DPoint, move2DPoint, removePointAt, translate2D, translate2DPoint
Methods inherited from interface com.luciad.shape.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZ
Methods inherited from interface com.luciad.symbology.app6a.model.ILcdRestrictedLengthPointList
getMinPointCount
-
Method Details
-
setMinPointCount
void setMinPointCount(int aMaxPointCount) Sets the number of points this point list should have at least. If the supplied number is positive then the count returned is the exact number of points the point list should have. If the number is negative, the point list should have at least the absolute value of the given number. E.g.: 2 indicates the point list requires exactly 2 points, while -2 indicates that the point list should have 2 points or more.
-