📄 basedatatagiteratorresultsetbytype.java
字号:
package jsp.tags.dapact.tags.data;
import jsp.tags.dapact.util.TagUtil;
/**
* 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@
*/
/**
* Base class that provides two properties (type and subtype) that can be used by
* a factory or such to generate the prepared statement (and possibly connection)
* need by the parent class.
*/
public abstract class BaseDataTagIteratorResultSetByType extends BaseDataTagIteratorResultSet
{
/**
* Default constructor...
*/
public BaseDataTagIteratorResultSetByType()
{
}
/*=============================================================================*/
/* PROPERTIES/ATTRIBUTES */
/*=============================================================================*/
/**
* A string constant that is used to retrieve and set the value of the type property.
*/
public static final String TYPE_CONST = TagUtil.HIDE_ATTR_CHAR + "type";
/**
* Get the type of the query requested.
*/
public String getType()
{
return (String)getValue(TYPE_CONST);
}
/**
* Set the type of the query requested.
*/
public void setType(String type)
{
this.setValue(TYPE_CONST, type);
}
/**
* A string constant that is used to retrieve and set the value of the subtype property.
*/
public static final String SUBTYPE_CONST = TagUtil.HIDE_ATTR_CHAR + "subtype";
/**
* Get the subtype of the query requested.
*/
public String getSubtype()
{
return (String)getValue(SUBTYPE_CONST);
}
/**
* Set the subtype of the query requested.
*/
public void setSubtype(String subtype)
{
this.setValue(SUBTYPE_CONST, subtype);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -