Package com.luciad.ais.model.airspace
Class TLcdFeaturedAssociationBasedAirspace
java.lang.Object
com.luciad.shape.ALcdShape
com.luciad.shape.ALcdShapeList
com.luciad.ais.model.airspace.TLcdAssociationBasedAirspace
com.luciad.ais.model.airspace.TLcdFeaturedAssociationBasedAirspace
- All Implemented Interfaces:
ILcdAssociationBasedAirspace,ILcdEditableAssociationBasedAirspace,ILcdGenericAirspace,ILcdDefaultDisplayNameSettable,ILcdDataObject,ILcdBounded,ILcdShape,ILcdShapeList,ILcdCache,ILcdCloneable,ILcdFeatured,ILcdInvalidateable,Serializable,Cloneable
public class TLcdFeaturedAssociationBasedAirspace
extends TLcdAssociationBasedAirspace
implements ILcdDefaultDisplayNameSettable
The default implementation of an association-based airspace with features.
- See Also:
-
Field Summary
Fields inherited from class com.luciad.ais.model.airspace.TLcdAssociationBasedAirspace
ASSOCIATIONS_PROPERTY -
Constructor Summary
ConstructorsConstructorDescriptionTLcdFeaturedAssociationBasedAirspace(int aNumberOfFeatures) Deprecated.TLcdFeaturedAssociationBasedAirspace(TLcdDataType aDataType) Creates a new instance for the given type. -
Method Summary
Modifier and TypeMethodDescriptionbooleancanSetFeature(int aIndex) Checks whether the specified feature is editable.Returns theStringto be used to display theILcdDefaultDisplayNameSettableobject.intReturns the current index of the feature to be uses in the display name.getFeature(int aIndex) Returns the featureObjectat the given index.intReturns the number of features.getValue(TLcdDataProperty aProperty) Returns the value of the given property.voidsetDefaultDisplayNameIndex(int aDefaultDisplayNameIndex) Sets the index of the feature to be used in the display name.voidsetFeature(int aIndex, Object aObject) Sets the featureObjectat the given index.voidsetValue(TLcdDataProperty aProperty, Object aValue) Sets the value of the given property for this data object.toString()Methods inherited from class com.luciad.ais.model.airspace.TLcdAssociationBasedAirspace
addAirspaceAssociation, calculateFocusPoint, clone, contains2D, contains2D, contains3D, contains3D, equals, getAirspaceAssociation, getAirspaceAssociationCount, getBounds, getDataType, getShape, getShapeCount, getValue, hashCode, hasValue, hasValue, invalidate, isAirspaceAssociationDiscretizable, removeAirspaceAssociation, removeAirspaceAssociationAt, setValueMethods inherited from class com.luciad.shape.ALcdShapeList
clearCache, getCachedObject, getFocusPoint, insertIntoCache, invalidateBounds, invalidateObject, removeCachedObject, setFocusPointMethods inherited from class com.luciad.shape.ALcdShape
fromDomainObjectMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.luciad.shape.ILcdShape
getFocusPoint
-
Constructor Details
-
TLcdFeaturedAssociationBasedAirspace
Deprecated.Constructs a newTLcdFeaturedAssociationBasedAirspaceobject. The user has to pass on the number of features he wants to store in the new object.- Parameters:
aNumberOfFeatures- the number of features to be stored in the newTLcdFeaturedAssociationBasedAirspaceobject
-
TLcdFeaturedAssociationBasedAirspace
Creates a new instance for the given type.- Parameters:
aDataType- the data type of the returned instance- Throws:
IllegalArgumentException- ifTLcdAISDataTypes.AssociationBasedAirspaceis not assignable from the given data type- Since:
- 10.1
- See Also:
-
-
Method Details
-
getFeature
Description copied from interface:ILcdFeaturedReturns the featureObjectat the given index.- Specified by:
getFeaturein interfaceILcdFeatured- Parameters:
aIndex- a valid feature index.- Returns:
- the feature
Objectat the given index. - See Also:
-
setFeature
Description copied from interface:ILcdFeaturedSets the featureObjectat the given index.- Specified by:
setFeaturein interfaceILcdFeatured- Parameters:
aIndex- a valid feature index.aObject- the new featureObject.- See Also:
-
getFeatureCount
public int getFeatureCount()Description copied from interface:ILcdFeaturedReturns the number of features.- Specified by:
getFeatureCountin interfaceILcdFeatured- Returns:
- the number of features.
-
canSetFeature
public boolean canSetFeature(int aIndex) Description copied from interface:ILcdFeaturedChecks whether the specified feature is editable.- Specified by:
canSetFeaturein interfaceILcdFeatured- Parameters:
aIndex- a valid feature index.- Returns:
- true if the feature can be set, false otherwise.
-
setDefaultDisplayNameIndex
public void setDefaultDisplayNameIndex(int aDefaultDisplayNameIndex) Description copied from interface:ILcdDefaultDisplayNameSettableSets the index of the feature to be used in the display name. The default value is 0.- Specified by:
setDefaultDisplayNameIndexin interfaceILcdDefaultDisplayNameSettable- Parameters:
aDefaultDisplayNameIndex- a valid index in the list of features- See Also:
-
getDefaultDisplayNameIndex
public int getDefaultDisplayNameIndex()Description copied from interface:ILcdDefaultDisplayNameSettableReturns the current index of the feature to be uses in the display name.- Specified by:
getDefaultDisplayNameIndexin interfaceILcdDefaultDisplayNameSettable- Returns:
- the current index of the feature to use in the display name
- See Also:
-
getDefaultDisplayName
Description copied from interface:ILcdDefaultDisplayNameSettableReturns theStringto be used to display theILcdDefaultDisplayNameSettableobject.- Specified by:
getDefaultDisplayNamein interfaceILcdDefaultDisplayNameSettable- Returns:
- the
Stringto be used to display theILcdDefaultDisplayNameSettableobject
-
toString
- Overrides:
toStringin classALcdShapeList
-
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 classTLcdAssociationBasedAirspace- 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 classTLcdAssociationBasedAirspace- Parameters:
aProperty- the property for which the value is to be setaValue- the value to set- See Also:
-
TLcdFeaturedAssociationBasedAirspace(TLcdDataType)