public class WebEdUtils extends Object
Constructor and Description |
---|
WebEdUtils() |
Modifier and Type | Method and Description |
---|---|
static String |
registerData(javax.servlet.jsp.PageContext pageContext,
String action_name,
String group_name,
List paramlist)
PUBLIC: Binds the parameters to the specified action in the given
action group and returns the HTML form control name to be used to
invoke the action with the given parameters.
|
static String |
registerData(javax.servlet.jsp.PageContext pageContext,
String action_name,
String group_name,
List paramlist,
List sub_actions)
PUBLIC: Binds the parameters to the specified action in the given
action group and returns the HTML form control name to be used to
invoke the action with the given parameters.
|
static String |
registerData(javax.servlet.jsp.PageContext pageContext,
String action_name,
String group_name,
List paramlist,
Set curvalue)
PUBLIC: Binds the parameters to the specified action in the given
action group and returns the HTML form control name to be used to
invoke the action with the given parameters.
|
public static String registerData(javax.servlet.jsp.PageContext pageContext, String action_name, String group_name, List paramlist) throws javax.servlet.jsp.JspTagException
pageContext
- The page context.action_name
- The name of the action to bind to (same as the -action-
attribute on the JSP tags).group_name
- The name of the action group the action belongs to (same
as the -actiongroup- attribute on the form tag).paramlist
- The parameters to the action. A list of navigator variable
names.javax.servlet.jsp.JspTagException
public static String registerData(javax.servlet.jsp.PageContext pageContext, String action_name, String group_name, List paramlist, Set curvalue) throws javax.servlet.jsp.JspTagException
pageContext
- The page context.action_name
- The name of the action to bind to (same as the -action-
attribute on the JSP tags).group_name
- The name of the action group the action belongs to (same
as the -actiongroup- attribute on the form tag).paramlist
- The parameters to the action. A list of navigator variable
names.curvalue
- The current value of the form control. (Warning: getting
this value right can be tricky.)javax.servlet.jsp.JspTagException
public static String registerData(javax.servlet.jsp.PageContext pageContext, String action_name, String group_name, List paramlist, List sub_actions) throws javax.servlet.jsp.JspTagException
pageContext
- The page context.action_name
- The name of the action to bind to (same as the -action-
attribute on the JSP tags).group_name
- The name of the action group the action belongs to (same
as the -actiongroup- attribute on the form tag).paramlist
- The parameters to the action. A list of navigator variable
names.sub_actions
- A list of actions to be invoked when this
action is invoked.javax.servlet.jsp.JspTagException