isavemapcompositionformdata.java
来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 40 行
JAVA
40 行
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 + =
减小字号Ctrl + -
显示快捷键?