Package org.zkoss.web.servlet.dsp.action
Class Out
- java.lang.Object
-
- org.zkoss.web.servlet.dsp.action.AbstractAction
-
- org.zkoss.web.servlet.dsp.action.Out
-
- All Implemented Interfaces:
Action
public class Out extends AbstractAction
Generates the specified value into a string.- Author:
- tomyeh
-
-
Constructor Summary
Constructors Constructor Description Out()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetEscapeXML()Returns whether to escape XML.intgetMaxlength()Returns the maxlength of bytes to output.booleangetNbsp()Returns whether to generate if the content is empty.java.lang.StringgetValue()Returns the value.booleanisPre()Returns whether to preserve the white spaces, such as space.voidrender(ActionContext ac, boolean nested)Processes the action and renders the output toActionContext.getOut().voidsetEscapeXML(boolean escapeXML)Sets whether to escape XML.voidsetMaxlength(int maxlength)Sets the maxlength to output.voidsetNbsp(boolean nbsp)Sets whether to generate if the content is empty.voidsetPre(boolean pre)Sets whether to preserve the white spaces, such as space.voidsetValue(java.lang.String value)Sets the value.java.lang.StringtoString()-
Methods inherited from class org.zkoss.web.servlet.dsp.action.AbstractAction
append, append, append, getIf, getUnless, isEffective, setIf, setUnless, toScope
-
-
-
-
Method Detail
-
getEscapeXML
public boolean getEscapeXML()
Returns whether to escape XML. Default: true.
-
setEscapeXML
public void setEscapeXML(boolean escapeXML)
Sets whether to escape XML.
-
getNbsp
public boolean getNbsp()
Returns whether to generate if the content is empty. Default: false.
-
setNbsp
public void setNbsp(boolean nbsp)
Sets whether to generate if the content is empty.
-
getValue
public java.lang.String getValue()
Returns the value. Default: null.
-
setValue
public void setValue(java.lang.String value)
Sets the value.
-
getMaxlength
public int getMaxlength()
Returns the maxlength of bytes to output.Default: 0 (no limit).
-
setMaxlength
public void setMaxlength(int maxlength)
Sets the maxlength to output.
-
setPre
public void setPre(boolean pre)
Sets whether to preserve the white spaces, such as space.- Since:
- 3.6.3.
-
isPre
public boolean isPre()
Returns whether to preserve the white spaces, such as space.Default: false;
- Since:
- 3.6.3.
-
render
public void render(ActionContext ac, boolean nested) throws DspException, java.io.IOException
Description copied from interface:ActionProcesses the action and renders the output toActionContext.getOut().nested- whether there is any nested content.- Throws:
DspExceptionjava.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-