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
FieldsModifier and TypeFieldDescriptionstatic final TLcdDataPropertyThe RefuelingTrack property of the refueling airspace type.Fields inherited from class com.luciad.ais.model.airspace.TLcdAirspace
SEGMENTS_PROPERTYFields 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_RHUMBFields inherited from interface com.luciad.shape.ILcdPolygon
CLOCKWISE, COUNTERCLOCKWISE, INVALID_ORIENTATION -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.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.voidsetRefuelingTrack(ILcdRefuelingTrack aRefuelingTrack) Specifies a value for the refueling track that is situated within this airspace.voidsetValue(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, setValueMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.luciad.ais.model.airspace.ILcdAirspace
getSegment, getSegmentBySegmentNumber, getSegmentCountMethods inherited from interface com.luciad.shape.ILcdBounded
getBoundsMethods inherited from interface com.luciad.util.ILcdCloneable
cloneMethods inherited from interface com.luciad.shape.ILcdCurve
computePointSFCT, getEndPoint, getEndTangent2D, getInterpolation, getLength2D, getLineSegmentIntersectionCount, getStartPoint, getStartTangent2D, getTangent2DMethods inherited from interface com.luciad.datamodel.ILcdDataObject
getDataType, getValue, hasValue, hasValue, setValueMethods inherited from interface com.luciad.ais.model.airspace.ILcdEditableAirspace
addSegment, insertSegmentAt, removeSegment, removeSegmentAtMethods inherited from interface com.luciad.ais.shape.ILcdGeoPath
getLeg, getLegCountMethods inherited from interface com.luciad.shape.ILcdPointList
getPoint, getPointCount, getPointSFCT, getX, getY, getZMethods inherited from interface com.luciad.shape.ILcdPolygon
getOrientationMethods 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.RefuelingAirspaceis not assignable from the given data type- Since:
- 10.1
- See Also:
-
-
Method Details
-
getValue
Description copied from interface:ILcdDataObjectReturns 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 typeor in one of its super types. Otherwise anIllegalArgumentExceptionis thrown.- Specified by:
getValuein interfaceILcdDataObject- Overrides:
getValuein 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:ILcdDataObjectSets 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 typeor 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:
setValuein interfaceILcdDataObject- Overrides:
setValuein classTLcdAirspace- Parameters:
aProperty- the property for which the value is to be setaValue- the value to set- See Also:
-
getRefuelingTrack
Description copied from interface:ILcdRefuelingAirspaceReturns the refueling track whose route is situated within this refueling airspace.- Specified by:
getRefuelingTrackin interfaceILcdRefuelingAirspace
-
setRefuelingTrack
Description copied from interface:ILcdEditableRefuelingAirspaceSpecifies a value for the refueling track that is situated within this airspace.- Specified by:
setRefuelingTrackin interfaceILcdEditableRefuelingAirspace- Parameters:
aRefuelingTrack- a value for the refueling track that is situated within this airspace.
-
TLcdRefuelingAirspace(TLcdDataType)