Update of /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/mock
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20767/input/javasrc/biz/xsoftware/mock
Modified Files:
MockObject.java
Log Message:
add/removeIgnoredMethod() -> add/removeIgnore()
Index: MockObject.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/mock/MockObject.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** MockObject.java 11 Sep 2006 05:14:44 -0000 1.4
--- MockObject.java 11 Sep 2006 15:03:59 -0000 1.5
***************
*** 1,7 ****
/*
- * Created on Jun 7, 2004
- *
- * To change the template for this generated file go to
- * Window - Preferences - Java - Code Generation - Code and Comments
*/
package biz.xsoftware.mock;
--- 1,3 ----
***************
*** 108,112 ****
* @param argTypes Optionally specify the type of parameters of the method
*/
! public void addIgnoredMethod(String method, Class ... argTypes);
/**
--- 104,108 ----
* @param argTypes Optionally specify the type of parameters of the method
*/
! public void addIgnore(String method, Class ... argTypes);
/**
***************
*** 116,120 ****
* @param argTypes Optionally specify the type of parameters of the method
*/
! public void removeIgnoredMethod(String method, Class ... argTypes);
public void setExpectTimeout(int timeout);
--- 112,116 ----
* @param argTypes Optionally specify the type of parameters of the method
*/
! public void removeIgnore(String method, Class ... argTypes);
public void setExpectTimeout(int timeout);
|