Class OutSupport

  • All Implemented Interfaces:
    BodyTag, IterationTag, JspTag, Tag, Serializable
    Direct Known Subclasses:
    OutTag, OutTag

    public class OutSupport
    extends BodyTagSupport

    Support for handlers of the <out> tag, which simply evalutes and prints the result of the expression it's passed. If the result is null, we print the value of the 'default' attribute's expression or our body (which two are mutually exclusive, although this constraint is enforced outside this handler, in our TagLibraryValidator).

    Author:
    Shawn Bayern
    See Also:
    Serialized Form
    • Field Detail

      • value

        protected Object value
      • escapeXml

        protected boolean escapeXml
    • Constructor Detail

      • OutSupport

        public OutSupport()
        Constructs a new handler. As with TagSupport, subclasses should not provide other constructors and are expected to call the superclass constructor.