[Java] 恩恩 →→→→→进入此内容的聊天室

来自 , 2019-05-14, 写在 Java, 查看 103 次.
URL http://www.code666.cn/view/92af93f7
  1. package dhw.wyn.sunshine;
  2.  
  3. import javax.xml.bind.annotation.XmlAccessType;
  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 class for anonymous complex type.
  11.  *
  12.  * <p>The following schema fragment specifies the expected content contained within this class.
  13.  *
  14.  * <pre>
  15.  * <complexType>
  16.  *   <complexContent>
  17.  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  18.  *       <sequence>
  19.  *         <any/>
  20.  *       </sequence>
  21.  *     </restriction>
  22.  *   </complexContent>
  23.  * </complexType>
  24.  * </pre>
  25.  *
  26.  *
  27.  */
  28. @XmlAccessorType(XmlAccessType.FIELD)
  29. @XmlType(name = "", propOrder = {
  30.     "any"
  31. })
  32. public class DataSet {
  33.  
  34.     @XmlAnyElement(lax = true)
  35.     protected Object any;
  36.  
  37.     /**
  38.      * Gets the value of the any property.
  39.      *
  40.      * @return
  41.      *     possible object is
  42.      *     {@link Object }
  43.      *    
  44.      */
  45.     public Object getAny() {
  46.         return any;
  47.     }
  48.  
  49.     /**
  50.      * Sets the value of the any property.
  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.  

回复 "恩恩"

这儿你可以回复上面这条便签

captcha