Package com.luciad.ais.model.aerodrome
Interface ILcdEditableRunwayDirection
- All Superinterfaces:
Cloneable
,ILcdDataObject
,ILcdRunwayDirection
- All Known Implementing Classes:
TLcdFeaturedRunwayDirection
,TLcdRunwayDirection
This interface is an extension of the
ILcdRunwayDirection
interface that allows to change the attributes and relationships of a runway direction.
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 return a specified default value for these new attributes or relationships (for instance 'null'). This will require a minimal effort to update existing code to a new version of AIS.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setArrestingGear
(ILcdArrestingGear aArrestingGear) Specifies the arresting gear of this runway direction.void
setDisplacedThresholdPoint
(ILcdPoint aThresholdPoint) Specifies the threshold point of this runway direction.void
setHasArrestingGear
(boolean aHasArrestingGear) Specifies whether this runway direction has an arresting gear or not.void
setHasDisplacedThresholdPoint
(boolean aHasDisplacedThresholdPoint) Specifies whether this runway direction has a displaced threshold or not.void
Specifies an ILS for this runway direction.void
setRunway
(ILcdRunway aRunway) Specifies the runway to which this direction belongs.Methods inherited from interface com.luciad.datamodel.ILcdDataObject
getDataType, getValue, getValue, hasValue, hasValue, setValue, setValue
Methods inherited from interface com.luciad.ais.model.aerodrome.ILcdRunwayDirection
clone, getArrestingGear, getDisplacedThresholdPoint, getILS, getRunway
-
Method Details
-
setHasDisplacedThresholdPoint
void setHasDisplacedThresholdPoint(boolean aHasDisplacedThresholdPoint) Specifies whether this runway direction has a displaced threshold or not.- Parameters:
aHasDisplacedThresholdPoint
- a boolean indicating whether this runway direction has a displaced threshold or not
-
setDisplacedThresholdPoint
Specifies the threshold point of this runway direction.- Parameters:
aThresholdPoint
- the threshold point of this runway direction
-
setHasArrestingGear
void setHasArrestingGear(boolean aHasArrestingGear) Specifies whether this runway direction has an arresting gear or not.- Parameters:
aHasArrestingGear
- a boolean indicating whether this runway direction has a arresting gear or not
-
setArrestingGear
Specifies the arresting gear of this runway direction.- Parameters:
aArrestingGear
- anILcdArrestingGear
object for the runway direction
-
setRunway
Specifies the runway to which this direction belongs.This is a required attribute.
- Parameters:
aRunway
- the runway to which this direction belongs
-