[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/script/embedable IDRSShell.java,1.5,1.6
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-09-09 21:27:47
|
Update of /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable
In directory usw-pr-cvs1:/tmp/cvs-serv10950/src/net/sourceforge/idrs/script/embedable
Modified Files:
IDRSShell.java
Log Message:
added transaction support and new form handling
Index: IDRSShell.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/embedable/IDRSShell.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** IDRSShell.java 22 Aug 2002 20:06:37 -0000 1.5
--- IDRSShell.java 9 Sep 2002 21:27:44 -0000 1.6
***************
*** 157,165 ****
}
! /*
/**
*Creates an error in the request
*@param err as string
! /
public void createError(String err) {
--- 157,165 ----
}
!
/**
*Creates an error in the request
*@param err as string
! */
public void createError(String err) {
***************
*** 170,174 ****
*Determines if there is an error
*@return true if there is an error
! /
public boolean isError() {
return idrs.isError();
--- 170,174 ----
*Determines if there is an error
*@return true if there is an error
! */
public boolean isError() {
return idrs.isError();
***************
*** 177,184 ****
/**
*Retrieves the error
! /
public String getError() {
return idrs.getError();
}
! */
}
--- 177,184 ----
/**
*Retrieves the error
! */
public String getError() {
return idrs.getError();
}
!
}
|