1,10 → 1,13 |
|
package net.brutex.xservices.types.alfevent; |
|
import java.util.ArrayList; |
import java.util.List; |
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlAnyElement; |
import javax.xml.bind.annotation.XmlType; |
import org.w3c.dom.Element; |
|
|
/** |
17,7 → 20,7 |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <any minOccurs="0"/> |
* <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
33,30 → 36,36 |
public class ALFEventWithReplyResponseType { |
|
@XmlAnyElement(lax = true) |
protected Object any; |
protected List<Object> any; |
|
/** |
* Ruft den Wert der any-Eigenschaft ab. |
* Gets the value of the any property. |
* |
* @return |
* possible object is |
* {@link Object } |
* <p> |
* This accessor method returns a reference to the live list, |
* not a snapshot. Therefore any modification you make to the |
* returned list will be present inside the JAXB object. |
* This is why there is not a <CODE>set</CODE> method for the any property. |
* |
*/ |
public Object getAny() { |
return any; |
} |
|
/** |
* Legt den Wert der any-Eigenschaft fest. |
* <p> |
* For example, to add a new item, do as follows: |
* <pre> |
* getAny().add(newItem); |
* </pre> |
* |
* @param value |
* allowed object is |
* |
* <p> |
* Objects of the following type(s) are allowed in the list |
* {@link Element } |
* {@link Object } |
* |
* |
*/ |
public void setAny(Object value) { |
this.any = value; |
public List<Object> getAny() { |
if (any == null) { |
any = new ArrayList<Object>(); |
} |
return this.any; |
} |
|
} |