blob: 8b098e32e18fdea22acf2a15f6311b864689664f [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// 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.02.15 at 04:31:32 PM CET
//
package org.eclipse.ptp.rm.lml.internal.core.elements;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for textbox_type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="textbox_type">
* &lt;complexContent>
* &lt;extension base="{http://www.llview.de}gobject_type">
* &lt;choice>
* &lt;element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="info" type="{http://www.llview.de}textinfo_type"/>
* &lt;/choice>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "textbox_type", propOrder = {
"text",
"info"
})
public class TextboxType
extends GobjectType
implements Serializable {
protected String text;
protected TextinfoType info;
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link TextinfoType }
*
*/
public TextinfoType getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link TextinfoType }
*
*/
public void setInfo(TextinfoType value) {
this.info = value;
}
}