KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > examples > ReturnPOJOExample


1 /* ****************************************************************************
2  * ReturnPOJOExample.java
3  * ****************************************************************************/

4
5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************
6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
7 * Use is subject to license terms. *
8 * J_LZ_COPYRIGHT_END *********************************************************/

9 package examples;
10
11 /**
12  * Example that returns only public members. See
13  * examples/javarpc/returnpojo.lzx.
14  */

15 public class ReturnPOJOExample {
16
17     public static MyPOJO getPOJO() {
18         return new MyPOJO();
19     }
20
21 }
22
Popular Tags