com.foursoft.vecmodel.vec113.VecOnWayPlacement Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.08.10 at 09:49:21 AM UTC
//
package com.foursoft.vecmodel.vec113;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
/**
* An OnWayPlacement places an OccurrenceOrUsage onto an area of the Topology (e.g. a tape or a tube). The area is defined by a startLocation and an endLocation. If startLocation and endLocation are not located on the same TopologySegment it is possible to specify a Path of TopologySegments over which the OnWayPlacement goes.
*
* Java class for OnWayPlacement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OnWayPlacement">
* <complexContent>
* <extension base="{http://www.prostep.org/ecad-if/2011/vec}Placement">
* <sequence>
* <element name="EndLocation" type="{http://www.prostep.org/ecad-if/2011/vec}Location"/>
* <element name="Path" type="{http://www.prostep.org/ecad-if/2011/vec}Path" minOccurs="0"/>
* <element name="StartLocation" type="{http://www.prostep.org/ecad-if/2011/vec}Location"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OnWayPlacement", propOrder = {
"endLocation",
"path",
"startLocation"
})
public class VecOnWayPlacement
extends VecPlacement
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "EndLocation", required = true)
protected VecLocation endLocation;
@XmlElement(name = "Path")
protected VecPath path;
@XmlElement(name = "StartLocation", required = true)
protected VecLocation startLocation;
/**
* Gets the value of the endLocation property.
*
* @return
* possible object is
* {@link VecLocation }
*
*/
public VecLocation getEndLocation() {
return endLocation;
}
/**
* Sets the value of the endLocation property.
*
* @param value
* allowed object is
* {@link VecLocation }
*
*/
public void setEndLocation(VecLocation value) {
this.endLocation = value;
}
/**
* Gets the value of the path property.
*
* @return
* possible object is
* {@link VecPath }
*
*/
public VecPath getPath() {
return path;
}
/**
* Sets the value of the path property.
*
* @param value
* allowed object is
* {@link VecPath }
*
*/
public void setPath(VecPath value) {
this.path = value;
}
/**
* Gets the value of the startLocation property.
*
* @return
* possible object is
* {@link VecLocation }
*
*/
public VecLocation getStartLocation() {
return startLocation;
}
/**
* Sets the value of the startLocation property.
*
* @param value
* allowed object is
* {@link VecLocation }
*
*/
public void setStartLocation(VecLocation value) {
this.startLocation = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecOnWayPlacement(this);
}
}