KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > HelperWithParams


1 public class HelperWithParams {
2
3     public static void main(String JavaDoc [] args){
4     }
5     public HelperWithParams(int x, int y){
6         
7     }
8     
9     public HelperWithParams(){
10         
11     }
12     
13     public void action(){
14         System.out.println("Helper");
15     }
16 }
17
Popular Tags