001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004 // Any modifications to this file will be lost upon recompilation of the source schema. 005 // Generated on: 2011.11.16 at 07:37:02 PM EST 006 // 007 008 009 package org.jabber.protocol.activity; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlAnyElement; 014 import javax.xml.bind.annotation.XmlType; 015 016 017 /** 018 * <p>Java class for specific complex type. 019 * 020 * <p>The following schema fragment specifies the expected content contained within this class. 021 * 022 * <pre> 023 * <complexType name="specific"> 024 * <complexContent> 025 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 026 * <sequence minOccurs="0"> 027 * <any namespace='##other'/> 028 * </sequence> 029 * </restriction> 030 * </complexContent> 031 * </complexType> 032 * </pre> 033 * 034 * 035 */ 036 @XmlAccessorType(XmlAccessType.FIELD) 037 @XmlType(name = "specific", propOrder = { 038 "any" 039 }) 040 public class Specific { 041 042 @XmlAnyElement(lax = true) 043 protected Object any; 044 045 /** 046 * Gets the value of the any property. 047 * 048 * @return 049 * possible object is 050 * {@link Object } 051 * 052 */ 053 public Object getAny() { 054 return any; 055 } 056 057 /** 058 * Sets the value of the any property. 059 * 060 * @param value 061 * allowed object is 062 * {@link Object } 063 * 064 */ 065 public void setAny(Object value) { 066 this.any = value; 067 } 068 069 }