All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foursoft.harness.kbl.v24.KblSpecifiedFixingOccurrence Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
//
// 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_fixing_occurrence complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Specified_fixing_occurrence">
 *   <complexContent>
 *     <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Fixing_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_fixing_occurrence", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = { "relatedAssembly", "relatedOccurrence" }) public class KblSpecifiedFixingOccurrence extends KblFixingOccurrence 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 = "refSpecifiedFixingOccurrence") protected KblAssemblyPartOccurrence relatedAssembly; /** * ref to Fixing_occurrence * */ @XmlElement(name = "Related_occurrence", required = true, type = java.lang.Object.class) @XmlIDREF @XmlSchemaType(name = "IDREF") @XmlBackReference(destinationField = "refSpecifiedFixingOccurrence") protected KblFixingOccurrence 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 Fixing_occurrence * * @return * possible object is * {@link Object } * */ public KblFixingOccurrence getRelatedOccurrence() { return relatedOccurrence; } /** * Sets the value of the relatedOccurrence property. * * @param value * allowed object is * {@link Object } * * @see #getRelatedOccurrence() */ public void setRelatedOccurrence(KblFixingOccurrence value) { this.relatedOccurrence = value; } publicR accept(Visitor aVisitor) throws E { return aVisitor.visitKblSpecifiedFixingOccurrence(this); } public boolean beforeMarshal(Marshaller marshaller) { super.beforeMarshal(marshaller); return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy