1 4 5 9 10 package org.openlaszlo.remote.soap; 11 12 import java.util.ArrayList ; 13 import java.util.Collection ; 14 import org.w3c.dom.Element ; 15 16 public class ArrayWrapper { 19 Element mElement; 20 ComplexType mType; 21 22 public ArrayWrapper(Element element, ComplexType type) { 23 mElement = element; 24 mType = type; 25 } 26 27 public Element getElement() { 28 return mElement; 29 } 30 31 public ComplexType getType() { 32 return mType; 33 } 34 } 35 | Popular Tags |