blob: 9cae57675480be0d4121e236ce4086b1cabf56a2 [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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* The value is any object type; these are set at runtime.
*
*
* <p>
* Java class for property complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="property">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="value" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
* &lt;element name="default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="configurable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "property", propOrder = { "value", "_default" })
public class Property {
protected Object value;
@XmlElement(name = "default")
protected String _default;
@XmlAttribute
protected Boolean configurable;
@XmlAttribute
protected String name;
@XmlAttribute
protected Boolean selected;
/**
* Gets the value of the default property.
*
* @return possible object is {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Gets the value of the name property.
*
* @return possible object is {@link String }
*
*/
public String getName() {
return name;
}
/**
* Gets the value of the value property.
*
* @return possible object is {@link Object }
*
*/
public Object getValue() {
return value;
}
/**
* Gets the value of the configurable property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isConfigurable() {
if (configurable == null) {
return true;
} else {
return configurable;
}
}
/**
* Gets the value of the selected property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isSelected() {
if (selected == null) {
return true;
} else {
return selected;
}
}
/**
* Sets the value of the configurable property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setConfigurable(Boolean value) {
this.configurable = value;
}
/**
* Sets the value of the default property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Sets the value of the selected property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setSelected(Boolean value) {
this.selected = value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is {@link Object }
*
*/
public void setValue(Object value) {
this.value = value;
}
}