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.disco_info; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlAttribute; 014 import javax.xml.bind.annotation.XmlRootElement; 015 import javax.xml.bind.annotation.XmlType; 016 import javax.xml.bind.annotation.XmlValue; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <simpleContent> 027 * <extension base="<http://jabber.org/protocol/disco#info>empty"> 028 * <attribute name="var" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> 029 * </extension> 030 * </simpleContent> 031 * </complexType> 032 * </pre> 033 * 034 * 035 */ 036 @XmlAccessorType(XmlAccessType.FIELD) 037 @XmlType(name = "", propOrder = { 038 "value" 039 }) 040 @XmlRootElement(name = "feature") 041 public class Feature { 042 043 @XmlValue 044 protected String value; 045 @XmlAttribute(required = true) 046 protected String var; 047 048 /** 049 * Gets the value of the value property. 050 * 051 * @return 052 * possible object is 053 * {@link String } 054 * 055 */ 056 public String getValue() { 057 return value; 058 } 059 060 /** 061 * Sets the value of the value property. 062 * 063 * @param value 064 * allowed object is 065 * {@link String } 066 * 067 */ 068 public void setValue(String value) { 069 this.value = value; 070 } 071 072 /** 073 * Gets the value of the var property. 074 * 075 * @return 076 * possible object is 077 * {@link String } 078 * 079 */ 080 public String getVar() { 081 return var; 082 } 083 084 /** 085 * Sets the value of the var property. 086 * 087 * @param value 088 * allowed object is 089 * {@link String } 090 * 091 */ 092 public void setVar(String value) { 093 this.var = value; 094 } 095 096 }