📄 getlocationforgroup.java
字号:
package cn.com.chinatelecom.schema.ctcc.terminal_location.v2_1.local;
import java.util.ArrayList;
import java.util.List;
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 getLocationForGroup complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="getLocationForGroup">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="addresses" type="{http://www.w3.org/2001/XMLSchema}anyURI" maxOccurs="unbounded"/>
* <element name="requestedAccuracy" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="acceptableAccuracy" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getLocationForGroup", propOrder = {
"addresses",
"requestedAccuracy",
"acceptableAccuracy"
})
public class GetLocationForGroup {
@XmlElement(required = true)
protected List<String> addresses;
protected int requestedAccuracy;
protected int acceptableAccuracy;
/**
* Gets the value of the addresses property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the addresses property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getAddresses().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getAddresses() {
if (addresses == null) {
addresses = new ArrayList<String>();
}
return this.addresses;
}
/**
* Gets the value of the requestedAccuracy property.
*
*/
public int getRequestedAccuracy() {
return requestedAccuracy;
}
/**
* Sets the value of the requestedAccuracy property.
*
*/
public void setRequestedAccuracy(int value) {
this.requestedAccuracy = value;
}
/**
* Gets the value of the acceptableAccuracy property.
*
*/
public int getAcceptableAccuracy() {
return acceptableAccuracy;
}
/**
* Sets the value of the acceptableAccuracy property.
*
*/
public void setAcceptableAccuracy(int value) {
this.acceptableAccuracy = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -