📄 gazetteerplace.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -