Update of /cvsroot/pfc-prolog/prolix/src/org/asturlinux/frade/prolix/web/formbeans
In directory sc8-pr-cvs1:/tmp/cvs-serv24207/src/org/asturlinux/frade/prolix/web/formbeans
Modified Files:
SolutionsFormBean.java
Log Message:
Added javaBean to manage data between JSP and interpreter
Index: SolutionsFormBean.java
===================================================================
RCS file: /cvsroot/pfc-prolog/prolix/src/org/asturlinux/frade/prolix/web/formbeans/SolutionsFormBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SolutionsFormBean.java 14 Jul 2003 17:16:47 -0000 1.1
--- SolutionsFormBean.java 15 Jul 2003 22:42:37 -0000 1.2
***************
*** 5,9 ****
/**
! * @struts:form name="SolutionsForm"
*/
public class SolutionsFormBean extends ActionForm
--- 5,9 ----
/**
! * @struts:form name="solutionsForm"
*/
public class SolutionsFormBean extends ActionForm
***************
*** 17,21 ****
HttpServletRequest request)
{
! ActionErrors errors = new ActionErrors();
return errors;
}
--- 17,21 ----
HttpServletRequest request)
{
! ActionErrors errors = null;
return errors;
}
|