KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > atest > jmock > Types


1 /* Copyright (c) 2000-2004 jMock.org
2  */

3 package atest.jmock;
4
5 /**
6  * Used as namespace for example types used in integration tests
7  */

8 public interface Types
9 {
10     public interface WithTwoMethods
11     {
12         int twoArgsReturnsInt( String JavaDoc arg1, Object JavaDoc arg2 );
13
14         void noArgsReturnsNothing();
15     }
16 }
17
Popular Tags