FileDocCategorySizeDatePackage
UsePropertyTagExtraInfo.javaAPI DocExample675Thu Jun 28 16:14:16 BST 2001com.ora.jsp.tags.generic

UsePropertyTagExtraInfo.java

package com.ora.jsp.tags.generic;

import javax.servlet.jsp.tagext.*;

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