com.foursoft.vecmodel.vec113.VecWireProtectionRole 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.XmlIDREF;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
import com.foursoft.xml.annotations.XmlBackReference;
/**
* A WireProtectionRole defines the instance specific properties and relationships of a wire protection.
*
* Java class for WireProtectionRole complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WireProtectionRole">
* <complexContent>
* <extension base="{http://www.prostep.org/ecad-if/2011/vec}Role">
* <sequence>
* <element name="ProtectionLength" type="{http://www.prostep.org/ecad-if/2011/vec}NumericalValue" minOccurs="0"/>
* <element name="TapeOverlap" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="TapingDirection" type="{http://www.prostep.org/ecad-if/2011/vec}TapingDirection" minOccurs="0"/>
* <element name="Gradient" type="{http://www.prostep.org/ecad-if/2011/vec}ValueWithUnit" minOccurs="0"/>
* <element name="WireProtectionSpecification" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WireProtectionRole", propOrder = {
"protectionLength",
"tapeOverlap",
"tapingDirection",
"gradient",
"wireProtectionSpecification"
})
public class VecWireProtectionRole
extends VecRole
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
/**
* Specifies the length of the protection.
*
*/
@XmlElement(name = "ProtectionLength")
protected VecNumericalValue protectionLength;
/**
* Specifies the amount of overlap two rounds of taping around a segment have.
*
*/
@XmlElement(name = "TapeOverlap")
protected String tapeOverlap;
/**
* Specifies the direction of the taping.
*
*/
@XmlElement(name = "TapingDirection")
protected String tapingDirection;
/**
* Specifies the gradient of the taping.
*
*/
@XmlElement(name = "Gradient")
protected VecValueWithUnit gradient;
/**
* References theWireProtectionSpecificationthat is instanced by thisWireProtectionRole.
*
*
*/
@XmlElement(name = "WireProtectionSpecification", required = true, type = java.lang.Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
@XmlBackReference(destinationField = "refWireProtectionRole")
protected VecWireProtectionSpecification wireProtectionSpecification;
/**
* Gets the value of the protectionLength property.
*
*
Specifies the length of the protection.
*
* @return
* possible object is
* {@link VecNumericalValue }
*
*/
public VecNumericalValue getProtectionLength() {
return protectionLength;
}
/**
* Sets the value of the protectionLength property.
*
* @param value
* allowed object is
* {@link VecNumericalValue }
*
* @see #getProtectionLength()
*/
public void setProtectionLength(VecNumericalValue value) {
this.protectionLength = value;
}
/**
* Gets the value of the tapeOverlap property.
*
*
Specifies the amount of overlap two rounds of taping around a segment have.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTapeOverlap() {
return tapeOverlap;
}
/**
* Sets the value of the tapeOverlap property.
*
* @param value
* allowed object is
* {@link String }
*
* @see #getTapeOverlap()
*/
public void setTapeOverlap(String value) {
this.tapeOverlap = value;
}
/**
* Gets the value of the tapingDirection property.
*
*
Specifies the direction of the taping.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTapingDirection() {
return tapingDirection;
}
/**
* Sets the value of the tapingDirection property.
*
* @param value
* allowed object is
* {@link String }
*
* @see #getTapingDirection()
*/
public void setTapingDirection(String value) {
this.tapingDirection = value;
}
/**
* Gets the value of the gradient property.
*
*
Specifies the gradient of the taping.
*
* @return
* possible object is
* {@link VecValueWithUnit }
*
*/
public VecValueWithUnit getGradient() {
return gradient;
}
/**
* Sets the value of the gradient property.
*
* @param value
* allowed object is
* {@link VecValueWithUnit }
*
* @see #getGradient()
*/
public void setGradient(VecValueWithUnit value) {
this.gradient = value;
}
/**
* Gets the value of the wireProtectionSpecification property.
*
*
References theWireProtectionSpecificationthat is instanced by thisWireProtectionRole.
*
*
* @return
* possible object is
* {@link Object }
*
*/
public VecWireProtectionSpecification getWireProtectionSpecification() {
return wireProtectionSpecification;
}
/**
* Sets the value of the wireProtectionSpecification property.
*
* @param value
* allowed object is
* {@link Object }
*
* @see #getWireProtectionSpecification()
*/
public void setWireProtectionSpecification(VecWireProtectionSpecification value) {
this.wireProtectionSpecification = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecWireProtectionRole(this);
}
}