Interface ILcdGML3PointArrayProperty


public interface ILcdGML3PointArrayProperty
Deprecated.
This class has been deprecated. The GML decoders and encoders in the com.luciad.format.gml3.* packages are replaced by new decoders and encoders in the packages com.luciad.format.gml2.xml, com.luciad.format.gml31.xml and com.luciad.format.gml32.xml.
Interface for the gml:PointArrayPropertyType type.

A container for an array of points. The elements are always contained in the array property, referencing geometry elements or arrays of geometry elements is not supported.

(GML Specification, v3.1.0, paragraph 9.2.1.4)

  • Method Summary

    Modifier and Type
    Method
    Description
    getPoint(int aIndex)
    Deprecated.
    Returns the point at the given index.
    int
    Deprecated.
    Returns the number of points contained in this point array property.
    void
    Deprecated.
    Sets the point array to be contained in this point array property.
  • Method Details

    • getPoint

      ILcdGML3Point getPoint(int aIndex)
      Deprecated.
      Returns the point at the given index.
      Parameters:
      aIndex - the index of the point to be returned.
      Returns:
      the point at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getPointCount()
    • getPointCount

      int getPointCount()
      Deprecated.
      Returns the number of points contained in this point array property.
      Returns:
      the number of points contained in this point array property.
    • setPoints

      void setPoints(ILcdGML3Point[] aPoints)
      Deprecated.
      Sets the point array to be contained in this point array property.
      Parameters:
      aPoints - the point array to be contained in this point array property.