Update of /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/mock
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8344/input/javasrc/biz/xsoftware/mock
Modified Files:
MockObject.java
Log Message:
Fixing javadoc comments as requested by defect 1984869
Index: MockObject.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/mock/MockObject.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** MockObject.java 11 Feb 2009 18:30:30 -0000 1.15
--- MockObject.java 11 Feb 2009 18:38:45 -0000 1.16
***************
*** 22,25 ****
--- 22,26 ----
*
* @author Dean Hiller
+ * @author Brian Freeman
*/
public interface MockObject {
***************
*** 458,473 ****
/**
! * Sets the timeout which is the delay that a mockobject waits for a method
! * to be called before failing. The default is 5 seconds.
! */
public void setExpectTimeout(int timeout);
/**
! * Gets the timeout which is the delay that a mockobject waits for a method
! * to be called before failing.
! *
! * @return The current expect timeout duration
! */
! public int getExpectTimeout();
/**
--- 459,478 ----
/**
! * Sets the timeout which is the delay that a mockobject waits for a method
! * to be called before failing. The default is 5 seconds.
! *
! * @param timeout
! * The new timeout, in milliseconds, for expect calls to wait
! * before failing
! */
public void setExpectTimeout(int timeout);
/**
! * Gets the timeout which is the delay that a mockobject waits for a method
! * to be called before failing.
! *
! * @return The current expect timeout duration, in milliseconds
! */
! public int getExpectTimeout();
/**
|