| |
|
| java.lang.Object com.ecyrd.jspwiki.forms.FormInfo
FormInfo | public class FormInfo implements Serializable(Code) | | Container for carrying HTTP FORM information between
WikiPlugin invocations in the Session.
author: ebu |
ERROR | final public static int ERROR(Code) | | |
EXECUTED | final public static int EXECUTED(Code) | | |
OK | final public static int OK(Code) | | |
m_hide | public boolean m_hide(Code) | | |
m_status | public int m_status(Code) | | |
FormInfo | public FormInfo()(Code) | | |
addSubmission | public void addSubmission(Map val)(Code) | | Adds the given values into the handler parameter map.
Parameters: val - parameter name-value pairs for a Form handler WikiPlugin |
getStatus | public int getStatus()(Code) | | |
getSubmission | public Map getSubmission()(Code) | | Returns parameter name-value pairs for a Form handler WikiPlugin.
The names are those of Form input fields, and the values whatever
the user selected in the form. The FormSet plugin can also be used
to provide initial values.
Handler parameter name-value pairs. |
hide | public boolean hide()(Code) | | |
setHide | public void setHide(boolean val)(Code) | | |
setStatus | public void setStatus(int val)(Code) | | |
setSubmission | public void setSubmission(Map val)(Code) | | Copies the given values into the handler parameter map using Map.putAll().
Parameters: val - parameter name-value pairs for a Form handler WikiPlugin |
|
|
|