1 /* *****************************************************************************2 * ObjectWrapper.java3 * ****************************************************************************/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 ;13 14 public class ObjectWrapper {15 public Element mElement;16 public ObjectWrapper(Element element) {17 mElement = element;18 }19 20 public Element getElement() {21 return mElement;22 }23 }24