// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlType; /** * A tin is a triangulated surface that uses * the Delauny algorithm or a similar algorithm complemented with * consideration of breaklines, stoplines, and maximum length of * triangle sides. These networks satisfy the Delauny's criterion * away from the modifications: Fore each triangle in the * network, the circle passing through its vertices does not * contain, in its interior, the vertex of any other triangle. * * <p>Java-Klasse für TinType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="TinType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}TriangulatedSurfaceType"> * <sequence> * <element name="stopLines" type="{http://www.opengis.net/gml}LineStringSegmentArrayPropertyType" maxOccurs="unbounded" minOccurs="0"/> * <element name="breakLines" type="{http://www.opengis.net/gml}LineStringSegmentArrayPropertyType" maxOccurs="unbounded" minOccurs="0"/> * <element name="maxLength" type="{http://www.opengis.net/gml}LengthType"/> * <element name="controlPoint"> * <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> * </element> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TinType", propOrder = { "stopLines", "breakLines", "maxLength", "controlPoint" }) public class TinType extends TriangulatedSurfaceType { protected List<LineStringSegmentArrayPropertyType> stopLines; protected List<LineStringSegmentArrayPropertyType> breakLines; @XmlElement(required = true) protected LengthType maxLength; @XmlElement(required = true) protected TinType.ControlPoint controlPoint; /** * Gets the value of the stopLines property. * * <p> * 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 <CODE>set</CODE> method for the stopLines property. * * <p> * For example, to add a new item, do as follows: * <pre> * getStopLines().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LineStringSegmentArrayPropertyType } * * */ public List<LineStringSegmentArrayPropertyType> getStopLines() { if (stopLines == null) { stopLines = new ArrayList<LineStringSegmentArrayPropertyType>(); } return this.stopLines; } public boolean isSetStopLines() { return ((this.stopLines!= null)&&(!this.stopLines.isEmpty())); } public void unsetStopLines() { this.stopLines = null; } /** * Gets the value of the breakLines property. * * <p> * 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 <CODE>set</CODE> method for the breakLines property. * * <p> * For example, to add a new item, do as follows: * <pre> * getBreakLines().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LineStringSegmentArrayPropertyType } * * */ public List<LineStringSegmentArrayPropertyType> getBreakLines() { if (breakLines == null) { breakLines = new ArrayList<LineStringSegmentArrayPropertyType>(); } return this.breakLines; } public boolean isSetBreakLines() { return ((this.breakLines!= null)&&(!this.breakLines.isEmpty())); } public void unsetBreakLines() { this.breakLines = null; } /** * Ruft den Wert der maxLength-Eigenschaft ab. * * @return * possible object is * {@link LengthType } * */ public LengthType getMaxLength() { return maxLength; } /** * Legt den Wert der maxLength-Eigenschaft fest. * * @param value * allowed object is * {@link LengthType } * */ public void setMaxLength(LengthType value) { this.maxLength = value; } public boolean isSetMaxLength() { return (this.maxLength!= null); } /** * Ruft den Wert der controlPoint-Eigenschaft ab. * * @return * possible object is * {@link TinType.ControlPoint } * */ public TinType.ControlPoint getControlPoint() { return controlPoint; } /** * Legt den Wert der controlPoint-Eigenschaft fest. * * @param value * allowed object is * {@link TinType.ControlPoint } * */ public void setControlPoint(TinType.ControlPoint value) { this.controlPoint = value; } public boolean isSetControlPoint() { return (this.controlPoint!= null); } public void setStopLines(List<LineStringSegmentArrayPropertyType> value) { this.stopLines = value; } public void setBreakLines(List<LineStringSegmentArrayPropertyType> value) { this.breakLines = value; } /** * <p>Java-Klasse für anonymous complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "posList", "geometricPositionGroup" }) public static class ControlPoint { protected DirectPositionListType posList; @XmlElements({ @XmlElement(name = "pos", type = DirectPositionType.class), @XmlElement(name = "pointProperty", type = PointPropertyType.class) }) protected List<Object> geometricPositionGroup; /** * Ruft den Wert der posList-Eigenschaft ab. * * @return * possible object is * {@link DirectPositionListType } * */ public DirectPositionListType getPosList() { return posList; } /** * Legt den Wert der posList-Eigenschaft fest. * * @param value * allowed object is * {@link DirectPositionListType } * */ public void setPosList(DirectPositionListType value) { this.posList = value; } public boolean isSetPosList() { return (this.posList!= null); } /** * Gets the value of the geometricPositionGroup property. * * <p> * 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 <CODE>set</CODE> method for the geometricPositionGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getGeometricPositionGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DirectPositionType } * {@link PointPropertyType } * * */ public List<Object> getGeometricPositionGroup() { if (geometricPositionGroup == null) { geometricPositionGroup = new ArrayList<Object>(); } return this.geometricPositionGroup; } public boolean isSetGeometricPositionGroup() { return ((this.geometricPositionGroup!= null)&&(!this.geometricPositionGroup.isEmpty())); } public void unsetGeometricPositionGroup() { this.geometricPositionGroup = null; } public void setGeometricPositionGroup(List<Object> value) { this.geometricPositionGroup = value; } } }