blob: 97cafd7979145b77449c431126b1ac393fc19ddc [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.04.21 at 02:35:28 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;
/**
*
* Calls "setField(entry value)" on the target.
*
*
* <p>
* Java class for set-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="set-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="entry" type="{http://org.eclipse.ptp/rm}entry-type" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="field" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "set-type", propOrder = { "entry" })
public class SetType {
protected EntryType entry;
@XmlAttribute
protected String field;
/**
* Gets the value of the entry property.
*
* @return possible object is {@link EntryType }
*
*/
public EntryType getEntry() {
return entry;
}
/**
* Gets the value of the field property.
*
* @return possible object is {@link String }
*
*/
public String getField() {
return field;
}
/**
* Sets the value of the entry property.
*
* @param value
* allowed object is {@link EntryType }
*
*/
public void setEntry(EntryType value) {
this.entry = value;
}
/**
* Sets the value of the field property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setField(String value) {
this.field = value;
}
}