info.kwarc.sally.comm.planetaryclient.AutocompleteRequest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.06.11 at 02:06:00 PM CEST
//
package info.kwarc.sally.comm.planetaryclient;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="col" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="line" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"path",
"text",
"prefix",
"col",
"line"
})
@XmlRootElement(name = "AutocompleteRequest")
public class AutocompleteRequest {
@XmlElement(required = true)
protected String path;
@XmlElement(required = true)
protected String text;
@XmlElement(required = true)
protected String prefix;
protected int col;
protected int line;
/**
* Gets the value of the path property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath() {
return path;
}
/**
* Sets the value of the path property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath(String value) {
this.path = value;
}
/**
* 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 prefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrefix() {
return prefix;
}
/**
* Sets the value of the prefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrefix(String value) {
this.prefix = value;
}
/**
* Gets the value of the col property.
*
*/
public int getCol() {
return col;
}
/**
* Sets the value of the col property.
*
*/
public void setCol(int value) {
this.col = value;
}
/**
* Gets the value of the line property.
*
*/
public int getLine() {
return line;
}
/**
* Sets the value of the line property.
*
*/
public void setLine(int value) {
this.line = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy