0,0 → 1,62 |
|
package net.brutex.xservices.types.alfevent; |
|
import javax.xml.bind.annotation.XmlAccessType; |
import javax.xml.bind.annotation.XmlAccessorType; |
import javax.xml.bind.annotation.XmlAnyElement; |
import javax.xml.bind.annotation.XmlType; |
|
|
/** |
* <p>Java-Klasse für ALFEventWithReplyResponseType complex type. |
* |
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. |
* |
* <pre> |
* <complexType name="ALFEventWithReplyResponseType"> |
* <complexContent> |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
* <sequence> |
* <any minOccurs="0"/> |
* </sequence> |
* </restriction> |
* </complexContent> |
* </complexType> |
* </pre> |
* |
* |
*/ |
@XmlAccessorType(XmlAccessType.FIELD) |
@XmlType(name = "ALFEventWithReplyResponseType", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", propOrder = { |
"any" |
}) |
public class ALFEventWithReplyResponseType { |
|
@XmlAnyElement(lax = true) |
protected Object any; |
|
/** |
* Ruft den Wert der any-Eigenschaft ab. |
* |
* @return |
* possible object is |
* {@link Object } |
* |
*/ |
public Object getAny() { |
return any; |
} |
|
/** |
* Legt den Wert der any-Eigenschaft fest. |
* |
* @param value |
* allowed object is |
* {@link Object } |
* |
*/ |
public void setAny(Object value) { |
this.any = value; |
} |
|
} |