Class TLcdHolding

java.lang.Object
com.luciad.ais.model.procedure.TLcdProcedure
com.luciad.ais.model.procedure.TLcdHolding
All Implemented Interfaces:
ILcdEditableHolding, ILcdEditableProcedure, ILcdHolding, ILcdProcedure, ILcdDataObject
Direct Known Subclasses:
TLcdFeaturedHolding

public class TLcdHolding extends TLcdProcedure implements ILcdEditableHolding
An implementation of ILcdHolding.
  • Field Details

    • SIGNIFICANT_POINT_PROPERTY

      public static final TLcdDataProperty SIGNIFICANT_POINT_PROPERTY
      The SignificantPoint property of the holding type. The geometry property is of type ILcdPoint.
  • Constructor Details

    • TLcdHolding

      @Deprecated public TLcdHolding()
      Deprecated.
    • TLcdHolding

      public TLcdHolding(TLcdDataType aDataType)
      Creates a new instance for the given type.
      Parameters:
      aDataType - the data type of the returned instance
      Throws:
      IllegalArgumentException - if TLcdAISDataTypes.Holding is not assignable from the given data type
      Since:
      10.1
      See Also:
  • Method Details

    • getValue

      public Object getValue(TLcdDataProperty aProperty)
      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 an IllegalArgumentException is thrown.

      Specified by:
      getValue in interface ILcdDataObject
      Overrides:
      getValue in class TLcdProcedure
      Parameters:
      aProperty - the property for which the value is to be returned
      Returns:
      the value of the given property for this data object
    • getValue

      public Object getValue(String aPropertyName)
      Description copied from interface: ILcdDataObject

      Convenience method that returns the value of the property with the given name.

      If more than one property exists with the given name, the most specific property should be used (this is the property defined by the most specialized type in this object's data type hierarchy).

      See ILcdDataObject.getValue(TLcdDataProperty) for more information.

      Specified by:
      getValue in interface ILcdDataObject
      Overrides:
      getValue in class TLcdProcedure
      Parameters:
      aPropertyName - the name of the property of which the value is to be returned
      Returns:
      the value of the property with the given name
      See Also:
    • setValue

      public void setValue(TLcdDataProperty aProperty, Object aValue)
      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 the data 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 an IllegalArgumentException.

      Specified by:
      setValue in interface ILcdDataObject
      Overrides:
      setValue in class TLcdProcedure
      Parameters:
      aProperty - the property for which the value is to be set
      aValue - the value to set
      See Also:
    • setValue

      public void setValue(String aPropertyName, Object aValue)
      Description copied from interface: ILcdDataObject

      Convenience method that sets the value of the property with the given name.

      If more than one property exists with the given name, the most specific property should be used (this is the property defined by the most specialized type in this object's data type hierarchy).

      See ILcdDataObject.setValue(TLcdDataProperty, Object) for more information.

      Specified by:
      setValue in interface ILcdDataObject
      Overrides:
      setValue in class TLcdProcedure
      Parameters:
      aPropertyName - the name of the property of which the value is to be set
      aValue - the value to set
    • getSignificantPoint

      public ILcdPoint getSignificantPoint()
      Description copied from interface: ILcdHolding
      Return the significant point (waypoint) of this holding.
      Specified by:
      getSignificantPoint in interface ILcdHolding
      Returns:
      The significant point (waypoint) of this holding.
    • setSignificantPoint

      public void setSignificantPoint(ILcdPoint aSignificantPoint)
      Description copied from interface: ILcdEditableHolding
      Specify the significant point (waypoint) of this holding.
      Specified by:
      setSignificantPoint in interface ILcdEditableHolding