KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > junit > go > test > Alfa


1 /*
2  * Alfa.java
3  *
4  * Created on February 7, 2007, 11:25 AM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.test.junit.go.test;
11
12 /**
13  *
14  * @author ms159439
15  */

16 public class Alfa {
17     
18     /** Creates a new instance of Alfa */
19     public Alfa() {
20     }
21     
22     /** dumb method */
23     public String JavaDoc hello(String JavaDoc name) {
24         return "Hello " + name;
25     }
26     
27 }
28
Popular Tags