blob: 765997180dcfe73e45ee6ee36cb9513f56f34f64 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
// 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.03.15 at 06:57:07 PM CDT
//
package org.eclipse.ptp.rm.jaxb.core.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for target complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="target">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="idFrom" type="{http://www.w3.org/2001/XMLSchema}int" />
* &lt;attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="type" default="property">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
* &lt;enumeration value="property"/>
* &lt;enumeration value="attribute"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "target")
public class Target {
@XmlAttribute
protected Integer idFrom;
@XmlAttribute
protected String ref;
@XmlAttribute
protected String type;
/**
* Gets the value of the idFrom property.
*
* @return possible object is {@link Integer }
*
*/
public Integer getIdFrom() {
return idFrom;
}
/**
* Gets the value of the ref property.
*
* @return possible object is {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Gets the value of the type property.
*
* @return possible object is {@link String }
*
*/
public String getType() {
if (type == null) {
return "property"; //$NON-NLS-1$
} else {
return type;
}
}
/**
* Sets the value of the idFrom property.
*
* @param value
* allowed object is {@link Integer }
*
*/
public void setIdFrom(Integer value) {
this.idFrom = value;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setRef(String value) {
this.ref = value;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}