com.foursoft.harness.kbl.v24.KblPartWithTitleBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbl-v24 Show documentation
Show all versions of kbl-v24 Show documentation
The model for KBL version 2.4.
//
// 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 java.util.HashSet;
import java.util.Set;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import com.foursoft.harness.kbl.v24.visitor.Visitable;
import com.foursoft.jaxb.navext.runtime.ExtendedUnmarshaller;
/**
* Java class for Part_with_title_block complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Part_with_title_block">
* <complexContent>
* <extension base="{http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema}Part">
* <sequence>
* <element name="Project_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Car_classification_level_2" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Car_classification_level_3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Car_classification_level_4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Model_year" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Part_with_title_block", namespace = "http://www.prostep.org/Car_electric_container/KBL2.3/KBLSchema", propOrder = {
"projectNumber",
"carClassificationLevel2",
"carClassificationLevel3",
"carClassificationLevel4",
"modelYear"
})
@XmlSeeAlso({
KblHarness.class,
KblHarnessConfiguration.class,
KblModule.class
})
public abstract class KblPartWithTitleBlock
extends KblPart
implements Serializable, Visitable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Project_number")
protected String projectNumber;
@XmlElement(name = "Car_classification_level_2", required = true)
protected String carClassificationLevel2;
@XmlElement(name = "Car_classification_level_3")
protected String carClassificationLevel3;
@XmlElement(name = "Car_classification_level_4")
protected String carClassificationLevel4;
@XmlElement(name = "Model_year", required = true)
protected String modelYear;
@XmlTransient
private Set refApproval = new HashSet();
@XmlTransient
private Set refCreation = new HashSet();
/**
* Gets the value of the projectNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProjectNumber() {
return projectNumber;
}
/**
* Sets the value of the projectNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProjectNumber(String value) {
this.projectNumber = value;
}
/**
* Gets the value of the carClassificationLevel2 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCarClassificationLevel2() {
return carClassificationLevel2;
}
/**
* Sets the value of the carClassificationLevel2 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCarClassificationLevel2(String value) {
this.carClassificationLevel2 = value;
}
/**
* Gets the value of the carClassificationLevel3 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCarClassificationLevel3() {
return carClassificationLevel3;
}
/**
* Sets the value of the carClassificationLevel3 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCarClassificationLevel3(String value) {
this.carClassificationLevel3 = value;
}
/**
* Gets the value of the carClassificationLevel4 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCarClassificationLevel4() {
return carClassificationLevel4;
}
/**
* Sets the value of the carClassificationLevel4 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCarClassificationLevel4(String value) {
this.carClassificationLevel4 = value;
}
/**
* Gets the value of the modelYear property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModelYear() {
return modelYear;
}
/**
* Sets the value of the modelYear property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModelYear(String value) {
this.modelYear = value;
}
/**
* Gets a {@link Set } of all {@link KblApproval } that have a outgoing reference to this object.
* 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 Set getRefApproval() {
return refApproval;
}
/**
* Gets a {@link Set } of all {@link KblCreation } that have a outgoing reference to this object.
* 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 Set getRefCreation() {
return refCreation;
}
public boolean beforeMarshal(Marshaller marshaller) {
super.beforeMarshal(marshaller);
return true;
}
}