| java.lang.Object simpleorm.simplewebapp.requestlet.WRequestlet
All known Subclasses: simpleorm.simplewebapp.requestlet.WPageRenderer,
WRequestlet | abstract public class WRequestlet (Code) | | /**
An instance of this class is created for each call of Servlet.doGet|doPost.
Contains utility routines needed to make pages without JSPs.
|
doGetPost | public void doGetPost()(Code) | | |
includeRenderer | public void includeRenderer(String url) throws Exception(Code) | | Mainly to include a JSP page after the main page processing.
|
outEscaped | public void outEscaped(String data)(Code) | | outEscaped(data, false)
|
outEscaped | public void outEscaped(String data, boolean nbsp)(Code) | | Outputs data after escaping it so that '<' becomes '<' etc.
Converts spaces to ' ' iff nbsp
Amazing that I need to write this myself!
See Also: WRequestlet.outRaw |
outRaw | public void outRaw(String html)(Code) | | Outputs raw HTML, does NOT quote it.
|
outURLEncoded | public void outURLEncoded(String data) throws Exception(Code) | | URL Encodes string in appropriate? encoding.
used for ?=value Get parameters on links
|
toHex | public static char toHex(int nibble)(Code) | | Convert a nibble to a hex character
Parameters: nibble - the nibble to convert. |
|
|