FileDocCategorySizeDatePackage
QueryTagExtraInfo.javaAPI DocExample643Thu Jun 28 16:14:16 BST 2001com.ora.jsp.tags.sql

QueryTagExtraInfo.java

package com.ora.jsp.tags.sql;

import javax.servlet.jsp.tagext.*;

/**
 * This class provides information about the variable created by the
 * QueryTag to the JSP container at translation-time.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class QueryTagExtraInfo extends DBTagExtraInfo {
    public VariableInfo[] getVariableInfo(TagData data) {
        return new VariableInfo[]
        {
            new VariableInfo(data.getAttributeString("id"),
                "java.util.Vector",
                true,
                VariableInfo.AT_END)
        };
    }
}