KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sample > more > NonObjectParameterMethods


1 package sample.more;
2
3 /**
4  * @mock:generate
5  */

6 public interface NonObjectParameterMethods {
7
8     void newMethod(byte notAnObject);
9
10     void newMethod(char notAnObject);
11
12     void newMethod(double notAnObject);
13
14     void newMethod(float notAnObject);
15
16     void newMethod(int notAnObject);
17
18     void newMethod(long notAnObject);
19
20     void newMethod(short notAnObject);
21
22     void newMethod(boolean notAnObject);
23 }
Popular Tags