KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > TestFunctionSet


1 package org.mmbase.bridge;
2  
3 /**
4  * Used to call all functions for the SetFunctions tests. XXX work in progress
5  *
6  * @author Simon Groenewolt (simon@submarine.nl)
7  */

8 public class TestFunctionSet {
9     
10     public static boolean testboolean(boolean b) {
11         return b;
12     }
13     
14     public static Boolean JavaDoc testBoolean(Boolean JavaDoc b) {
15         return b;
16     }
17     
18     public static int testint(int i) {
19         return i;
20     }
21     
22     public static Integer JavaDoc testInteger(Integer JavaDoc i) {
23         return i;
24     }
25     
26 }
27
Popular Tags