[Pfc-prolog-cvs] prolix/src/org/asturlinux/frade/prolix/web/beans CurrentStateBean.java,NONE,1.1
Status: Beta
Brought to you by:
ivanfrade
From: <iva...@us...> - 2003-07-15 22:42:41
|
Update of /cvsroot/pfc-prolog/prolix/src/org/asturlinux/frade/prolix/web/beans In directory sc8-pr-cvs1:/tmp/cvs-serv24207/src/org/asturlinux/frade/prolix/web/beans Added Files: CurrentStateBean.java Log Message: Added javaBean to manage data between JSP and interpreter --- NEW FILE: CurrentStateBean.java --- package org.asturlinux.frade.prolix.web.beans; public class CurrentStateBean implements java.io.Serializable { private String program; private String consult; private String result; /** * Gets the value of program * * @return the value of program */ public String getCurrentProgram() { return this.program; } /** * Sets the value of program * * @param argProgram Value to assign to this.program */ public void setCurrentProgram(String argProgram) { this.program = argProgram; } /** * Gets the value of consult * * @return the value of consult */ public String getCurrentConsult() { return this.consult; } /** * Sets the value of consult * * @param argConsult Value to assign to this.consult */ public void setCurrentConsult(String argConsult) { this.consult = argConsult; } /** * Gets the value of result * * @return the value of result */ public String getCurrentResult() { return this.result; } /** * Sets the value of result * * @param argResult Value to assign to this.result */ public void setCurrentResult(String argResult) { this.result = argResult; } } |