01: /* ****************************************************************************
02: * MyPOJO.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09: package examples;
10:
11: /**
12: * Class used in ReturnPOJOExample.java.
13: */
14: public class MyPOJO {
15: public String name = "public name";
16: public int number = 1000;
17: public Object nullValue = null;
18: private String privateName = "private name";
19: private int privateNumber = -1;
20: }
|