Class TLcdRefuelingAirspace
java.lang.Object
com.luciad.ais.model.airspace.TLcdAirspace
com.luciad.ais.model.refuelingtrack.TLcdRefuelingAirspace
- All Implemented Interfaces:
ILcdAirspace
,ILcdEditableAirspace
,ILcdGenericAirspace
,ILcdEditableRefuelingAirspace
,ILcdRefuelingAirspace
,ILcdGeoPath
,ILcdDataObject
,ILcdBounded
,ILcdCurve
,ILcdPointList
,ILcdPolygon
,ILcdRing
,ILcdShape
,ILcdCloneable
,Serializable
,Cloneable
- Direct Known Subclasses:
TLcdFeaturedRefuelingAirspace
An implementation of the
This class also implements the
It's an implementation of
ILcdEditableAirspace
interface.This class also implements the
ILcdGeoPath
interface just to make sure that the airspaces
can be painted by a TLcdGeoPathPainter
object.It's an implementation of
ILcdShape
to be able to use the default painter of LuciadLightspeed.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TLcdDataProperty
The RefuelingTrack property of the refueling airspace type.Fields inherited from class com.luciad.ais.model.airspace.TLcdAirspace
SEGMENTS_PROPERTY
Fields inherited from interface com.luciad.shape.ILcdCurve
INTERPOLATION_CIRCLE_BY_3POINTS, INTERPOLATION_CIRCLE_BY_CENTERPOINT, INTERPOLATION_CIRCULARARC_BY_3POINTS, INTERPOLATION_CIRCULARARC_BY_BULGE, INTERPOLATION_CIRCULARARC_BY_CENTERPOINT, INTERPOLATION_ELLIPTICAL, INTERPOLATION_GEODESIC, INTERPOLATION_LINEAR, INTERPOLATION_MIXED, INTERPOLATION_RHUMB
Fields inherited from interface com.luciad.shape.ILcdPolygon
CLOCKWISE, COUNTERCLOCKWISE, INVALID_ORIENTATION
-
Constructor Summary
ConstructorDescriptionDeprecated.TLcdRefuelingAirspace
(TLcdDataType aDataType) Creates a new instance for the given type. -
Method Summary
Modifier and TypeMethodDescriptionReturns the refueling track whose route is situated within this refueling airspace.getValue
(TLcdDataProperty aProperty) Returns the value of the given property.void
setRefuelingTrack
(ILcdRefuelingTrack aRefuelingTrack) Specifies a value for the refueling track that is situated within this airspace.void
setValue
(TLcdDataProperty aProperty, Object aValue) Sets the value of the given property for this data object.Methods inherited from class com.luciad.ais.model.airspace.TLcdAirspace
addSegment, clone, computePointSFCT, contains2D, contains2D, contains3D, contains3D, equals, getBounds, getDataType, getEndPoint, getEndTangent2D, getFocusPoint, getGeopathDiscretization, getInterpolation, getLeg, getLegCount, getLength2D, getLineSegmentIntersectionCount, getOrientation, getPoint, getPointCount, getSegment, getSegmentBySegmentNumber, getSegmentCount, getSegmentIndexForPoint, getStartPoint, getStartTangent2D, getTangent2D, getValue, hashCode, hasValue, hasValue, insertSegmentAt, invalidate, removeSegment, removeSegmentAt, setGeoPathDiscretization, setValue
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.luciad.ais.model.airspace.ILcdAirspace
getSegment, getSegmentBySegmentNumber, getSegmentCount
Methods inherited from interface com.luciad.shape.ILcdBounded
getBounds
Methods inherited from interface com.luciad.util.ILcdCloneable
clone
Methods inherited from interface com.luciad.shape.ILcdCurve
computePointSFCT, getEndPoint, getEndTangent2D, getInterpolation, getLength2D, getLineSegmentIntersectionCount, getStartPoint, getStartTangent2D, getTangent2D
Methods inherited from interface com.luciad.datamodel.ILcdDataObject
getDataType, getValue, hasValue, hasValue, setValue
Methods inherited from interface com.luciad.ais.model.airspace.ILcdEditableAirspace
addSegment, insertSegmentAt, removeSegment, removeSegmentAt
Methods inherited from interface com.luciad.ais.shape.ILcdGeoPath
getLeg, getLegCount
Methods inherited from interface com.luciad.shape.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZ
Methods inherited from interface com.luciad.shape.ILcdPolygon
getOrientation
Methods inherited from interface com.luciad.shape.ILcdShape
contains2D, contains2D, contains3D, contains3D, getFocusPoint
-
Field Details
-
REFUELING_TRACK_PROPERTY
The RefuelingTrack property of the refueling airspace type. Values of this property are of typeILcdRefuelingTrack
.
-
-
Constructor Details
-
TLcdRefuelingAirspace
Deprecated. -
TLcdRefuelingAirspace
Creates a new instance for the given type.- Parameters:
aDataType
- the data type of the returned instance- Throws:
IllegalArgumentException
- ifTLcdAISDataTypes.RefuelingAirspace
is not assignable from the given data type- Since:
- 10.1
- See Also:
-
-
Method Details
-
getValue
Description copied from interface:ILcdDataObject
Returns the value of the given property.
If the property is a collection, the returned value will never be null. If the property has not been set, an empty collection of the appropriate type will be returned (Set, List or Map).
The property must not be null, and must be declared in the
data object's type
or in one of its super types. Otherwise anIllegalArgumentException
is thrown.- Specified by:
getValue
in interfaceILcdDataObject
- Overrides:
getValue
in classTLcdAirspace
- Parameters:
aProperty
- the property for which the value is to be returned- Returns:
- the value of the given property for this data object
-
setValue
Description copied from interface:ILcdDataObject
Sets the value of the given property for this data object. The implementation is allowed to throw an exception if the given value can't be set.
The given property must be declared in thedata object's type
or in one of its super types. In other words, getDataType().getProperties().contains( aProperty ) should always be true. Otherwise, the implementation should throw anIllegalArgumentException
.- Specified by:
setValue
in interfaceILcdDataObject
- Overrides:
setValue
in classTLcdAirspace
- Parameters:
aProperty
- the property for which the value is to be setaValue
- the value to set- See Also:
-
getRefuelingTrack
Description copied from interface:ILcdRefuelingAirspace
Returns the refueling track whose route is situated within this refueling airspace.- Specified by:
getRefuelingTrack
in interfaceILcdRefuelingAirspace
-
setRefuelingTrack
Description copied from interface:ILcdEditableRefuelingAirspace
Specifies a value for the refueling track that is situated within this airspace.- Specified by:
setRefuelingTrack
in interfaceILcdEditableRefuelingAirspace
- Parameters:
aRefuelingTrack
- a value for the refueling track that is situated within this airspace.
-
TLcdRefuelingAirspace(TLcdDataType)