KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > webref > DoubleBack


1 package test.wsdl.webref;
2 /**
3  * Test the wsdl2java option implementationClassName
4  *
5  * @author Mans Tanneryd (mans@tanneryd.com)
6  */

7
8 public class DoubleBack
9 {
10     public String JavaDoc echo(String JavaDoc message)
11     {
12         return message+message;
13     }
14 }
15
Popular Tags