| hero.struts.forms.EdgeForm
EdgeForm | final public class EdgeForm extends ActionForm (Code) | | Form bean for the edge. This form has the following fields,
with default values in square brackets:
- nodeIn - The nodeIn of the edge. [REQUIRED]
- nodeOut - The nodeOut of the edge. [REQUIRED]
author: Miguel Valdes Faura version: $Revision: 1.1 $ $Date: 2004/07/30 14:57:57 $ |
getNodeIn | public String getNodeIn()(Code) | | Get the nodeIn
String |
getNodeOut | public String getNodeOut()(Code) | | Get the nodeOut
String |
reset | public void reset(ActionMapping mapping, HttpServletRequest request)(Code) | | Reset all properties to their default values.
Parameters: mapping - The mapping used to select this instance Parameters: request - The servlet request we are processing |
setNodeIn | public void setNodeIn(String nodeIn)(Code) | | Set the nodeIn.
Parameters: nodeIn - |
setNodeOut | public void setNodeOut(String nodeOut)(Code) | | Set the nodeOut.
Parameters: nodeOut - |
validate | public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)(Code) | | Validate the properties that have been set from this HTTP request,
and return an ActionErrors object that encapsulates any
validation errors that have been found. If no errors are found, return
null or an ActionErrors object with no
recorded error messages.
Parameters: mapping - The mapping used to select this instance Parameters: request - The servlet request we are processing |
|
|