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

eu.datex2.schema._2._2_0.VmsUnitTableVersionedReference Maven / Gradle / Ivy

The newest version!

package eu.datex2.schema._2._2_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for _VmsUnitTableVersionedReference complex type. * *

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

 * <complexType name="_VmsUnitTableVersionedReference">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/2/2_0}VersionedReference">
 *       <attribute name="targetClass" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" fixed="VmsUnitTable" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "_VmsUnitTableVersionedReference") public class VmsUnitTableVersionedReference extends VersionedReference { @XmlAttribute(name = "targetClass", required = true) @XmlSchemaType(name = "anySimpleType") protected String targetClass; /** * Gets the value of the targetClass property. * * @return * possible object is * {@link String } * */ public String getTargetClass() { if (targetClass == null) { return "VmsUnitTable"; } else { return targetClass; } } /** * Sets the value of the targetClass property. * * @param value * allowed object is * {@link String } * */ public void setTargetClass(String value) { this.targetClass = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy