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

com.foursoft.vecmodel.vec113.VecCoding 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.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.vecmodel.vec113.visitor.Visitable;
import com.foursoft.vecmodel.vec113.visitor.Visitor;
import com.foursoft.xml.ExtendedUnmarshaller;
import com.foursoft.xml.annotations.XmlParent;


/**
 * 

Specifies the coding of a slot or a connector housing.

* *

Java class for Coding complex type. * *

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

 * <complexType name="Coding">
 *   <complexContent>
 *     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ExtendableElement">
 *       <sequence>
 *         <element name="Coding" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Coding", propOrder = { "coding" }) public class VecCoding extends VecExtendableElement implements Serializable, Visitable { private final static long serialVersionUID = 1L; /** *

Specifies the name of the coding.

* */ @XmlElement(name = "Coding", required = true) protected String coding; @XmlTransient @XmlParent private VecAbstractSlot parentAbstractSlot; @XmlTransient @XmlParent private VecConnectorHousingSpecification parentConnectorHousingSpecification; /** * Gets the value of the coding property. *

*

Specifies the name of the coding.

* * @return * possible object is * {@link String } * */ public String getCoding() { return coding; } /** * Sets the value of the coding property. * * @param value * allowed object is * {@link String } * * @see #getCoding() */ public void setCoding(String value) { this.coding = value; } /** * Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a {@link VecAbstractSlot } otherwise it will be null
* Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the {@link ExtendedUnmarshaller }.
This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
* This property has no effect when the object is marshalled to xml. * */ public VecAbstractSlot getParentAbstractSlot() { return parentAbstractSlot; } /** * Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a {@link VecConnectorHousingSpecification } otherwise it will be null
* Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the {@link ExtendedUnmarshaller }.
This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
* This property has no effect when the object is marshalled to xml. * */ public VecConnectorHousingSpecification getParentConnectorHousingSpecification() { return parentConnectorHousingSpecification; } publicR accept(Visitor aVisitor) throws E { return aVisitor.visitVecCoding(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy