Subversion Repositories XServices

Rev

Rev 201 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
201 brianR 1
 
2
3
 
203 brianR 4
import java.util.List;
5
import javax.xml.bind.annotation.XmlAccessType;
201 brianR 6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlAnyElement;
8
import javax.xml.bind.annotation.XmlType;
9
import org.w3c.dom.Element;
203 brianR 10
201 brianR 11
 
12
 
13
 * <p>Java-Klasse für ALFEventResponseType complex type.
14
 *
15
 * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
16
 *
17
 * <pre>
18
 * &lt;complexType name="ALFEventResponseType">
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
203 brianR 23
 *       &lt;/sequence>
201 brianR 24
 *     &lt;/restriction>
25
 *   &lt;/complexContent>
26
 * &lt;/complexType>
27
 * </pre>
28
 *
29
 *
30
 */
31
@XmlAccessorType(XmlAccessType.FIELD)
32
@XmlType(name = "ALFEventResponseType", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", propOrder = {
33
    "any"
34
})
35
public class ALFEventResponseType {
36
37
 
38
    protected List<Object> any;
203 brianR 39
201 brianR 40
 
41
     * Gets the value of the any property.
203 brianR 42
     *
201 brianR 43
     * <p>
203 brianR 44
     * This accessor method returns a reference to the live list,
45
     * not a snapshot. Therefore any modification you make to the
46
     * returned list will be present inside the JAXB object.
47
     * This is why there is not a <CODE>set</CODE> method for the any property.
48
     *
201 brianR 49
     * <p>
203 brianR 50
     * For example, to add a new item, do as follows:
51
     * <pre>
52
     *    getAny().add(newItem);
53
     * </pre>
54
     *
55
     *
56
     * <p>
57
     * Objects of the following type(s) are allowed in the list
58
     * {@link Element }
59
     * {@link Object }
60
     *
61
     *
62
     */
201 brianR 63
    public List<Object> getAny() {
203 brianR 64
        if (any == null) {
65
            any = new ArrayList<Object>();
66
        }
67
        return this.any;
68
    }
201 brianR 69
70
 
71