com.foursoft.vecmodel.vec113.VecFixingRole 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 FixingRole defines the instance specific properties and relationships of a fixing.
*
* Java class for FixingRole complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FixingRole">
* <complexContent>
* <extension base="{http://www.prostep.org/ecad-if/2011/vec}Role">
* <sequence>
* <element name="FixingSpecification" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FixingRole", propOrder = {
"fixingSpecification"
})
public class VecFixingRole
extends VecRole
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
/**
* References theFixingSpecificationthat is instanced by thisFixingRole.
*
*
*/
@XmlElement(name = "FixingSpecification", required = true, type = java.lang.Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
@XmlBackReference(destinationField = "refFixingRole")
protected VecFixingSpecification fixingSpecification;
/**
* Gets the value of the fixingSpecification property.
*
*
References theFixingSpecificationthat is instanced by thisFixingRole.
*
*
* @return
* possible object is
* {@link Object }
*
*/
public VecFixingSpecification getFixingSpecification() {
return fixingSpecification;
}
/**
* Sets the value of the fixingSpecification property.
*
* @param value
* allowed object is
* {@link Object }
*
* @see #getFixingSpecification()
*/
public void setFixingSpecification(VecFixingSpecification value) {
this.fixingSpecification = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitVecFixingRole(this);
}
}