Package com.luciad.ais.model.aerodrome
Class TLcdRunwayModelDescriptor
java.lang.Object
com.luciad.model.TLcdModelDescriptor
com.luciad.ais.model.TLcdHashedFeaturedModelDescriptor
com.luciad.ais.model.aerodrome.TLcdRunwayModelDescriptor
- All Implemented Interfaces:
ILcdDataModelDescriptor
,ILcdModelDescriptor
,ILcdFeaturedDescriptor
,Serializable
- Direct Known Subclasses:
TLcdAIXMRunwayModelDescriptor
,TLcdARINCRunwayModelDescriptor
,TLcdDAFIFRunwayModelDescriptor
A model descriptor for models containing
ILcdRunway
objects.
This model descriptor is also an ILcdDataModelDescriptor
.
A model descriptor for the runway direction, runway cline point and the arresting gear can be registered.
- See Also:
-
Constructor Summary
ConstructorDescriptionTLcdRunwayModelDescriptor
(String aSourceName, String aTypeName, String aDisplayName, TLcdDataType aElementType) Constructs a newTLcdRunwayModelDescriptor
object.TLcdRunwayModelDescriptor
(String aSourceName, String aTypeName, String aDisplayName, String[] aFeatureNames, Class[] aFeatureClasses) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionReturns the featured descriptor describing the featured arresting gears.Returns the featured descriptor describing the featured runway cline points.Returns the featured descriptor describing the featured runway directions.void
setArrestingGearDescriptor
(ILcdFeaturedDescriptor aArrestingGearDescriptor) Specifies a featured descriptor for arresting gears.void
setRunwayClinePointDescriptor
(ILcdFeaturedDescriptor aRunwayClinePointDescriptor) Specifies a featured descriptor for the runway cline points.void
setRunwayDirectionDescriptor
(ILcdFeaturedDescriptor aRunwayDirectionDescriptor) Specifies a featured descriptor for the runway directions.Methods inherited from class com.luciad.ais.model.TLcdHashedFeaturedModelDescriptor
getDataModel, getFeatureClass, getFeatureCount, getFeatureIndex, getFeatureName, getModelElementTypes, getModelTypes
Methods inherited from class com.luciad.model.TLcdModelDescriptor
getDisplayName, getSourceName, getTypeName, setDisplayName, setSourceName, setTypeName, sourceNameToDisplayName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.luciad.util.ILcdFeaturedDescriptor
getFeatureUnitOfMeasure
Methods inherited from interface com.luciad.model.ILcdModelDescriptor
getDisplayName, getSourceName, getTypeName
-
Constructor Details
-
TLcdRunwayModelDescriptor
@Deprecated public TLcdRunwayModelDescriptor(String aSourceName, String aTypeName, String aDisplayName, String[] aFeatureNames, Class[] aFeatureClasses) Deprecated.Constructs a newTLcdRunwayModelDescriptor
object.- Parameters:
aSourceName
- the name of the data sourceaTypeName
- the type name of the data sourceaDisplayName
- the display name of the data sourceaFeatureNames
- the feature namesaFeatureClasses
- the feature classes
-
TLcdRunwayModelDescriptor
public TLcdRunwayModelDescriptor(String aSourceName, String aTypeName, String aDisplayName, TLcdDataType aElementType) Constructs a newTLcdRunwayModelDescriptor
object.- Parameters:
aSourceName
- the name of the data sourceaTypeName
- the type name of the data sourceaDisplayName
- the display name of the data sourceaElementType
- the type of the elements of this descriptor's model- Since:
- 10.1
-
-
Method Details
-
setRunwayDirectionDescriptor
Specifies a featured descriptor for the runway directions.- Parameters:
aRunwayDirectionDescriptor
- a featured descriptor for the runway directions.
-
getRunwayDirectionDescriptor
Returns the featured descriptor describing the featured runway directions.- Returns:
- the featured descriptor describing the featured runway directions.
-
setRunwayClinePointDescriptor
Specifies a featured descriptor for the runway cline points.- Parameters:
aRunwayClinePointDescriptor
- a featured descriptor for the runway cline points.
-
getRunwayClinePointDescriptor
Returns the featured descriptor describing the featured runway cline points. Note that null can be returned if there isn't a featured descriptor available; this can be the case when noILcdRunwayClinePoint
instances are used for the points of a runway.- Returns:
- the featured descriptor describing the featured runway cline points. Null is returned if no featured descriptor is available.
-
getArrestingGearDescriptor
Returns the featured descriptor describing the featured arresting gears.- Returns:
- the featured descriptor describing the featured arresting gears. Null is returned if no featured descriptor is available.
-
setArrestingGearDescriptor
Specifies a featured descriptor for arresting gears.- Parameters:
aArrestingGearDescriptor
- a featured descriptor for arresting gears.
-
TLcdRunwayModelDescriptor(String, String, String, TLcdDataType)