📄 baseselectoptioninf.java
字号:
package jsp.tags.dapact.lookup;
/**
* Title: Data Aware Processing And Control Tags
* Description: Tag library for the processing and controlling the input and output of data.
* Copyright: LGPL (http://www.gnu.org/copyleft/lesser.html)
* Compile Date: @compile_date@
* @author Allen M Servedio
* @amp_sign@version @VERSION@
*/
/**
* Interface for object that will be used to create an option list for a select tag - an array of these
* should be returned for the lookup result (remember that ArrayList can return an
* array with the toArray() function).
*/
public interface BaseSelectOptionInf
{
/**
* Abstract function for retrieving the value of the option.
*/
public String getValue();
/**
* Abstract function for retrieving the text (display) of the option.
*/
public String getText();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -