Package nl.b3p.csw.jaxb.gml
Class TinType.ControlPoint
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.TinType.ControlPoint
-
- Enclosing class:
- TinType
public static class TinType.ControlPoint extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element ref="{http://www.opengis.net/gml}posList"/> <group ref="{http://www.opengis.net/gml}geometricPositionGroup" maxOccurs="unbounded" minOccurs="3"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<javax.xml.bind.JAXBElement<?>>geometricPositionGroupprotected PosListposList
-
Constructor Summary
Constructors Constructor Description ControlPoint()Default no-arg constructorControlPoint(PosList posList, List<javax.xml.bind.JAXBElement<?>> geometricPositionGroup)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<javax.xml.bind.JAXBElement<?>>getGeometricPositionGroup()Gets the value of the geometricPositionGroup property.PosListgetPosList()Gets the value of the posList property.voidsetPosList(PosList value)Sets the value of the posList property.
-
-
-
Method Detail
-
getPosList
public PosList getPosList()
Gets the value of the posList property.- Returns:
- possible object is
PosList
-
setPosList
public void setPosList(PosList value)
Sets the value of the posList property.- Parameters:
value- allowed object isPosList
-
getGeometricPositionGroup
public List<javax.xml.bind.JAXBElement<?>> getGeometricPositionGroup()
Gets the value of the geometricPositionGroup property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the geometricPositionGroup property.For example, to add a new item, do as follows:
getGeometricPositionGroup().add(newItem);Objects of the following type(s) are allowed in the list
PosPointProperty
-
-