⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gazetteerplace.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 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 + -