Class Out
- java.lang.Object
-
- org.apache.jasper.tagplugins.jstl.core.Out
-
-
Constructor Summary
Constructors Constructor Description Out()Constructs an Out tag plugin.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoTag(TagPluginContext ctxt)Generate codes for a custom tag.static booleanoutput(JspWriter out, java.lang.Object input, java.lang.String value, java.lang.String defaultValue, boolean escapeXml)Performs output of a value to the JspWriter.
-
-
-
Method Detail
-
doTag
public void doTag(TagPluginContext ctxt)
Description copied from interface:TagPluginGenerate codes for a custom tag.
-
output
public static boolean output(JspWriter out, java.lang.Object input, java.lang.String value, java.lang.String defaultValue, boolean escapeXml) throws java.io.IOException
Performs output of a value to the JspWriter.- Parameters:
out- The JspWriter to write toinput- The input objectvalue- The value to outputdefaultValue- The default valueescapeXml- Whether to escape XML- Returns:
- true if output was performed
- Throws:
java.io.IOException- if an I/O error occurs
-
-