blob: 00e1d2cef873d3129941a17bb91cf6c83f3f4f36 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.02.15 at 04:31:32 PM CET
//
package org.eclipse.ptp.rm.lml.internal.core.elements;
import java.io.Serializable;
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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
* Abstract base-type for el-tags in data-tag. Could be
* used for special attributes, which only data-elements
* are allowed to include.
*
*
* <p>Java class for data_element complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="data_element">
* &lt;complexContent>
* &lt;extension base="{http://www.llview.de}element_type">
* &lt;attribute name="oid" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="status" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="refid" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "data_element")
@XmlSeeAlso({
DataElement10 .class,
DataElement9 .class,
DataElement7 .class,
DataElement8 .class,
DataElement2 .class,
DataElement1 .class,
DataElement6 .class,
DataElement5 .class,
DataElement4 .class,
DataElement3 .class
})
public class DataElement
extends ElementType
implements Serializable {
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String oid;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String name;
@XmlAttribute
protected String description;
@XmlAttribute
protected String status;
@XmlAttribute
protected String refid;
/**
* Gets the value of the oid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOid() {
return oid;
}
/**
* Sets the value of the oid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOid(String value) {
this.oid = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the refid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRefid() {
return refid;
}
/**
* Sets the value of the refid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRefid(String value) {
this.refid = value;
}
}