//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* An offset curve is a curve at a constant
* distance from the basis curve. They can be useful as a cheap
* and simple alternative to constructing curves that are offsets
* by definition.
*
* <p>Java-Klasse für OffsetCurveType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="OffsetCurveType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}AbstractCurveSegmentType">
* <sequence>
* <element name="offsetBase" type="{http://www.opengis.net/gml}CurvePropertyType"/>
* <element name="distance" type="{http://www.opengis.net/gml}LengthType"/>
* <element name="refDirection" type="{http://www.opengis.net/gml}VectorType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OffsetCurveType", propOrder = {
"offsetBase",
"distance",
"refDirection"
})
public class OffsetCurveType
extends AbstractCurveSegmentType
{
@XmlElement(required = true)
protected CurvePropertyType offsetBase;
@XmlElement(required = true)
protected LengthType distance;
protected VectorType refDirection;
/**
* Ruft den Wert der offsetBase-Eigenschaft ab.
*
* @return
* possible object is
* {@link CurvePropertyType }
*
*/
public CurvePropertyType getOffsetBase() {
return offsetBase;
}
/**
* Legt den Wert der offsetBase-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link CurvePropertyType }
*
*/
public void setOffsetBase(CurvePropertyType value) {
this.offsetBase = value;
}
public boolean isSetOffsetBase() {
return (this.offsetBase!= null);
}
/**
* Ruft den Wert der distance-Eigenschaft ab.
*
* @return
* possible object is
* {@link LengthType }
*
*/
public LengthType getDistance() {
return distance;
}
/**
* Legt den Wert der distance-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link LengthType }
*
*/
public void setDistance(LengthType value) {
this.distance = value;
}
public boolean isSetDistance() {
return (this.distance!= null);
}
/**
* Ruft den Wert der refDirection-Eigenschaft ab.
*
* @return
* possible object is
* {@link VectorType }
*
*/
public VectorType getRefDirection() {
return refDirection;
}
/**
* Legt den Wert der refDirection-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link VectorType }
*
*/
public void setRefDirection(VectorType value) {
this.refDirection = value;
}
public boolean isSetRefDirection() {
return (this.refDirection!= null);
}
}