Class GetStaticTag

  • All Implemented Interfaces:
    Tag

    public class GetStaticTag
    extends TagSupport
    A tag which can retrieve the value of a static field of a given class. The following attributes are required:
    • var - The variable to which to assign the resulting value.
    • field - The name of the static field to retrieve.
    • className - The name of the class containing the static field.
    Example usage:
     <j:getStatic var="closeOperation" className="javax.swing.JFrame"
                  field="EXIT_ON_CLOSE"/>
     
    Version:
    $Revision: 155420 $
    • Constructor Detail

      • GetStaticTag

        public GetStaticTag()
    • Method Detail

      • setVar

        public void setVar​(String var)
        Sets the name of the variable exported by this tag.
        Parameters:
        var - The variable name.
      • setField

        public void setField​(String field)
        Sets the name of the field to retrieve.
        Parameters:
        field - The field name
      • setClassName

        public void setClassName​(String className)
        Sets the fully qualified name of the class containing the static field.
        Parameters:
        className - The name of the class.