Subversion Repositories XServices

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
201 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessorType;
5
import javax.xml.bind.annotation.XmlAnyElement;
6
import javax.xml.bind.annotation.XmlType;
7
8
 
9
 
10
 * <p>Java-Klasse für ALFEventWithReplyResponseType complex type.
11
 *
12
 * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
13
 *
14
 * <pre>
15
 * &lt;complexType name="ALFEventWithReplyResponseType">
16
 *   &lt;complexContent>
17
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18
 *       &lt;sequence>
19
 *         &lt;any minOccurs="0"/>
20
 *       &lt;/sequence>
21
 *     &lt;/restriction>
22
 *   &lt;/complexContent>
23
 * &lt;/complexType>
24
 * </pre>
25
 *
26
 *
27
 */
28
@XmlAccessorType(XmlAccessType.FIELD)
29
@XmlType(name = "ALFEventWithReplyResponseType", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", propOrder = {
30
    "any"
31
})
32
public class ALFEventWithReplyResponseType {
33
34
 
35
    protected Object any;
36
37
 
38
     * Ruft den Wert der any-Eigenschaft ab.
39
     *
40
     * @return
41
     *     possible object is
42
     *     {@link Object }
43
     *
44
     */
45
    public Object getAny() {
46
        return any;
47
    }
48
49
 
50
     * Legt den Wert der any-Eigenschaft fest.
51
     *
52
     * @param value
53
     *     allowed object is
54
     *     {@link Object }
55
     *
56
     */
57
    public void setAny(Object value) {
58
        this.any = value;
59
    }
60
61
 
62