📄 isavemapcompositionformdata.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 + -