FileDocCategorySizeDatePackage
UseLocaleBundleTagExtraInfo.javaAPI DocExample680Thu Jun 28 16:14:16 BST 2001com.ora.jsp.tags.generic

UseLocaleBundleTagExtraInfo.java

package com.ora.jsp.tags.generic;

import javax.servlet.jsp.tagext.*;

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