Package com.luciad.format.gml32.model
Class TLcdGML32PointArrayProperty
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.format.gml32.model.TLcdGML32PointArrayProperty
- All Implemented Interfaces:
ILcdDataObject
,ILcdCloneable
,ILcdDeepCloneable
,Cloneable
gml:PointArrayPropertyType is a container for an array of points. The elements are always contained inline in the array property, referencing geometry elements or arrays of geometry elements via XLinks is not supported.
- Since:
- 10.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TLcdDataProperty
Data property that maps to theowns
attribute.static final TLcdDataProperty
Data property that maps to thePoint
element. -
Constructor Summary
ConstructorDescription -
Method Summary
-
Field Details
-
OWNS_PROPERTY
Data property that maps to theowns
attribute. The possible values for this property are instances ofboolean
. -
POINT_PROPERTY
Data property that maps to thePoint
element. The possible values for this property are instances ofList<TLcdGML32Point>
.
-
-
Constructor Details
-
TLcdGML32PointArrayProperty
public TLcdGML32PointArrayProperty() -
TLcdGML32PointArrayProperty
-
-
Method Details
-
getOwns
public boolean getOwns()Returns the value of the property that maps to theowns
attribute.- Returns:
- the value of the
OWNS_PROPERTY
property.
-
setOwns
public void setOwns(boolean aValue) Sets the value of the property that maps to theowns
attribute.- Parameters:
aValue
- the value to set for theOWNS_PROPERTY
property.
-
getPoint
Returns the value of the property that maps to thePoint
element.A Point is defined by a single coordinate tuple. The direct position of a point is specified by the pos element which is of type DirectPositionType.
- Returns:
- the value of the
POINT_PROPERTY
property.
-