KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openlaszlo > remote > soap > ObjectWrapper


1 /* *****************************************************************************
2  * ObjectWrapper.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
10 package org.openlaszlo.remote.soap;
11
12 import org.w3c.dom.Element JavaDoc;
13
14 public class ObjectWrapper {
15     public Element JavaDoc mElement;
16     public ObjectWrapper(Element JavaDoc element) {
17         mElement = element;
18     }
19
20     public Element JavaDoc getElement() {
21         return mElement;
22     }
23 }
24
Popular Tags