baseselectoptioninf.java

来自「这是一个mvc模式」· Java 代码 · 共 28 行

JAVA
28
字号
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 + =
减小字号Ctrl + -
显示快捷键?