com.foursoft.harness.kbl.v24.KblSpecifiedSpecialTerminalOccurrence Maven / Gradle / Ivy
Show all versions of kbl-v24 Show documentation
//
// 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: 2022.07.05 at 05:22:49 PM UTC
//
package com.foursoft.harness.kbl.v24;
import java.io.Serializable;
import javax.xml.bind.Marshaller;
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.harness.kbl.v24.visitor.Visitable;
import com.foursoft.harness.kbl.v24.visitor.Visitor;
import com.foursoft.jaxb.navext.runtime.annotations.XmlBackReference;
/**
* Java class for Specified_special_terminal_occurrence complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Specified_special_terminal_occurrence">
* <complexContent>
* <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Special_terminal_occurrence">
* <sequence>
* <element name="Related_assembly" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* <element name="Related_occurrence" type="{http://www.w3.org/2001/XMLSchema}IDREF"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Specified_special_terminal_occurrence", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = {
"relatedAssembly",
"relatedOccurrence"
})
public class KblSpecifiedSpecialTerminalOccurrence
extends KblSpecialTerminalOccurrence
implements Serializable, HasRelatedAssembly, Visitable
{
private final static long serialVersionUID = 1L;
/**
* ref to Assembly_part_occurrence
*
*/
@XmlElement(name = "Related_assembly", required = true, type = java.lang.Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
@XmlBackReference(destinationField = "refSpecifiedSpecialTerminalOccurrence")
protected KblAssemblyPartOccurrence relatedAssembly;
/**
* ref to Special_terminal_occurrence
*
*/
@XmlElement(name = "Related_occurrence", required = true, type = java.lang.Object.class)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
@XmlBackReference(destinationField = "refSpecifiedSpecialTerminalOccurrence")
protected KblSpecialTerminalOccurrence relatedOccurrence;
/**
* Gets the value of the relatedAssembly property.
*
* ref to Assembly_part_occurrence
*
* @return
* possible object is
* {@link Object }
*
*/
public KblAssemblyPartOccurrence getRelatedAssembly() {
return relatedAssembly;
}
/**
* Sets the value of the relatedAssembly property.
*
* @param value
* allowed object is
* {@link Object }
*
* @see #getRelatedAssembly()
*/
public void setRelatedAssembly(KblAssemblyPartOccurrence value) {
this.relatedAssembly = value;
}
/**
* Gets the value of the relatedOccurrence property.
*
* ref to Special_terminal_occurrence
*
* @return
* possible object is
* {@link Object }
*
*/
public KblSpecialTerminalOccurrence getRelatedOccurrence() {
return relatedOccurrence;
}
/**
* Sets the value of the relatedOccurrence property.
*
* @param value
* allowed object is
* {@link Object }
*
* @see #getRelatedOccurrence()
*/
public void setRelatedOccurrence(KblSpecialTerminalOccurrence value) {
this.relatedOccurrence = value;
}
publicR accept(Visitor aVisitor)
throws E
{
return aVisitor.visitKblSpecifiedSpecialTerminalOccurrence(this);
}
public boolean beforeMarshal(Marshaller marshaller) {
super.beforeMarshal(marshaller);
return true;
}
}