Package com.luciad.ais.model.vfr
Interface ILcdEditableVFRRoute
- All Superinterfaces:
Cloneable
,ILcd2DEditablePointList
,ILcd2DEditablePolyline
,ILcd2DEditableShape
,ILcd3DEditablePointList
,ILcd3DEditablePolyline
,ILcd3DEditableShape
,ILcdBounded
,ILcdCloneable
,ILcdDataObject
,ILcdPointList
,ILcdPolyline
,ILcdShape
,ILcdVFRRoute
,Serializable
- All Known Implementing Classes:
TLcdFeaturedVFROffsetRoute
,TLcdFeaturedVFRRoute
,TLcdVFROffsetRoute
,TLcdVFRRoute
This interface defines operations to edit the attributes and relationships of
an
ILcdVFRRoute
.
Attributes and relationships in AIS domain objects can be required or optional. When unspecified, an attribute or relationship is optional. Note that most optional attributes are modeled using features.
In future releases of AIS, optional attributes or relationship may be added to this interface. When this would happen, existing implementations may just provide an empty implementation modifying or setting these new attributes or relationships. This will require a minimal effort to update existing code to a new version of AIS.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addRoutePoint
(ILcdVFRRoutePoint aRoutePoint) Adds anILcdVFRRoutePoint
object at the end of the VFR route.void
removeRoutePoint
(int aIndex) Removes theILcdVFRRoutePoint
object at the given index.void
setOffset
(boolean aIsOffset) A boolean indicating whether this route is an offset route or not.Methods inherited from interface com.luciad.shape.shape2D.ILcd2DEditablePointList
append2DPoint, insert2DPoint, move2DPoint, translate2D, translate2DPoint
Methods inherited from interface com.luciad.shape.shape2D.ILcd2DEditableShape
move2D, move2D, translate2D
Methods inherited from interface com.luciad.shape.shape3D.ILcd3DEditablePointList
insert3DPoint, move3DPoint, removePointAt, translate3D, translate3DPoint
Methods inherited from interface com.luciad.shape.shape3D.ILcd3DEditableShape
move3D, move3D, translate3D
Methods inherited from interface com.luciad.shape.ILcdBounded
getBounds
Methods inherited from interface com.luciad.util.ILcdCloneable
clone
Methods inherited from interface com.luciad.datamodel.ILcdDataObject
getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue
Methods inherited from interface com.luciad.shape.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZ
Methods inherited from interface com.luciad.shape.ILcdShape
contains2D, contains2D, contains3D, contains3D, getFocusPoint
Methods inherited from interface com.luciad.ais.model.vfr.ILcdVFRRoute
isOffset
-
Method Details
-
addRoutePoint
Adds anILcdVFRRoutePoint
object at the end of the VFR route.- Parameters:
aRoutePoint
- the point to be added
-
removeRoutePoint
void removeRoutePoint(int aIndex) Removes theILcdVFRRoutePoint
object at the given index.- Parameters:
aIndex
- the index of the point to be removed
-
setOffset
void setOffset(boolean aIsOffset) A boolean indicating whether this route is an offset route or not.This is a required attribute.
- Parameters:
aIsOffset
- a boolean indicating whether this route is an offset route or not
-