1 28 29 package com.caucho.soap.wsdl; 30 31 import javax.xml.bind.annotation.XmlAnyElement; 32 import java.util.ArrayList ; 33 import java.util.List ; 34 35 38 public abstract class WSDLExtensibleDocumented { 39 @XmlAnyElement(lax = true) 40 private List <Object > _any; 41 42 public List <Object > getAny() 43 { 44 return _any; 45 } 46 47 public void addAny(Object any) 48 { 49 if (_any == null) 50 _any = new ArrayList <Object >(); 51 52 _any.add(any); 53 } 54 } 55 | Popular Tags |