[Idrs-commit] CVS: Idrs/dev/src/net/sourceforge/idrs/script IDRSScript.java,1.7,1.8
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
In directory usw-pr-cvs1:/tmp/cvs-serv10950/src/net/sourceforge/idrs/script
Modified Files:
IDRSScript.java
Log Message:
added transaction support and new form handling
Index: IDRSScript.java
===================================================================
RCS file: /cvsroot/idrs/Idrs/dev/src/net/sourceforge/idrs/script/IDRSScript.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** IDRSScript.java 22 Aug 2002 20:06:37 -0000 1.7
--- IDRSScript.java 9 Sep 2002 21:27:44 -0000 1.8
***************
*** 119,127 ****
public String getDigest(String plain) throws Exception ;
! /*
/**
*Creates an error in the request
*@param err as string
! /
public void createError(String err);
--- 119,127 ----
public String getDigest(String plain) throws Exception ;
!
/**
*Creates an error in the request
*@param err as string
! */
public void createError(String err);
***************
*** 130,140 ****
*Determines if there is an error
*@return true if there is an error
! /
public boolean isError() ;
/**
*Retrieves the error
! /
public String getError() ;
! */
}
--- 130,140 ----
*Determines if there is an error
*@return true if there is an error
! */
public boolean isError() ;
/**
*Retrieves the error
! */
public String getError() ;
!
}
|