//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-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: 2007.05.29 at 02:15:41 PM CEST
//
package converter;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for descType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="descType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="arguments" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="tooltip" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="doc" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "descType", propOrder = {
"type",
"arguments",
"category",
"tooltip",
"doc"
})
public class DescType {
@XmlElement(required = true)
protected String type;
@XmlElement(required = true)
protected String arguments;
@XmlElement(required = true)
protected String category;
@XmlElement(required = true)
protected String tooltip;
@XmlElement(required = true)
protected String doc;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the arguments property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArguments() {
return arguments;
}
/**
* Sets the value of the arguments property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArguments(String value) {
this.arguments = value;
}
/**
* Gets the value of the category property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCategory() {
return category;
}
/**
* Sets the value of the category property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCategory(String value) {
this.category = value;
}
/**
* Gets the value of the tooltip property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTooltip() {
return tooltip;
}
/**
* Sets the value of the tooltip property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTooltip(String value) {
this.tooltip = value;
}
/**
* Gets the value of the doc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDoc() {
return doc;
}
/**
* Sets the value of the doc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDoc(String value) {
this.doc = value;
}
}