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

📄 isavemapcompositionformdata.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.web.tasks.mapcomp;

/**
 * Defines an interface for retrieving form data when saving a Map
 * Composition.  The form data includes Name, Description, New flag, and
 * ID.  In most cases a Task will implement this interface.
 */
public interface ISaveMapCompositionFormData {

	/**
	 * Returns the name entered into the form for the Map Composition.
	 * 
	 * @return	Name of Map Composition
	 */
	public String getName();

	/**
	 * Returns the description entered into the form for the Map Composition.
	 * 
	 * @return Description of Map Composition.
	 */
	public String getDescription();
	
	/**
	 * Returns the flag indicating if the Map Composition is new or already 
	 * exists.
	 * 
	 * @return	New flag.
	 */
	public boolean isNew ();

	/**
	 * Returns the ID of the Map Composition in string format.  The ID
	 * typically only exists if the Map Composition is NOT new.
	 * 
	 * @return ID of the Map Composition.
	 */
	public String getId();

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -