blob: 86de61c53d6026e52c03635a416ec9357b83f994 [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;
import javax.xml.bind.annotation.XmlValue;
/**
*
* 'ValueFrom' refers to properties in the resource manager environment.
*
*
* <p>
* Java class for directive-definition complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="directive-definition">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="valueFrom" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "directive-definition", propOrder = { "content" })
public class DirectiveDefinition {
@XmlValue
protected String content;
@XmlAttribute
protected String valueFrom;
/**
*
* 'ValueFrom' refers to properties in the resource manager environment.
*
*
* @return possible object is {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Gets the value of the valueFrom property.
*
* @return possible object is {@link String }
*
*/
public String getValueFrom() {
return valueFrom;
}
/**
*
* 'ValueFrom' refers to properties in the resource manager environment.
*
*
* @param value
* allowed object is {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Sets the value of the valueFrom property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setValueFrom(String value) {
this.valueFrom = value;
}
}