gazetteerplace.java
来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 55 行
JAVA
55 行
package com.esri.solutions.jitk.common.gazetteer;
/**
* Object representing an SI_LocationInstance from the WFS-G GetFeature
* response.
*/
public class GazetteerPlace {
/**
* Name of the place.
*/
private String _placeName = null;
/**
* {@link String} representation of the place location.
*/
private String _placeLocation = null;
/**
* Gets the name of the place.
*
* @return {@link String} place name.
*/
public String getPlaceName() {
return _placeName;
}
/**
* Sets the name of the place.
*
* @param name {@link String} place name.
*/
public void setPlaceName(String name) {
_placeName = name;
}
/**
* Gets the {@link String} representation of the place's location.
*
* @return {@link String} representation of the place location.
*/
public String getPlaceLocation() {
return _placeLocation;
}
/**
* Sets the {@link String} representation of the place's location.
*
* @param location {@link String} representation of the place location.
*/
public void setPlaceLocation(String location) {
_placeLocation = location;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?