View Javadoc

1   
2   package com.ontotext.ordi.wsmo4rdf.remote.client.conn;
3   
4   import javax.xml.bind.annotation.XmlAccessType;
5   import javax.xml.bind.annotation.XmlAccessorType;
6   import javax.xml.bind.annotation.XmlElement;
7   import javax.xml.bind.annotation.XmlType;
8   
9   
10  /**
11   * <p>Java class for setDescription complex type.
12   * 
13   * <p>The following schema fragment specifies the expected content contained within this class.
14   * 
15   * <pre>
16   * &lt;complexType name="setDescription">
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;sequence>
20   *         &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
21   *         &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22   *       &lt;/sequence>
23   *     &lt;/restriction>
24   *   &lt;/complexContent>
25   * &lt;/complexType>
26   * </pre>
27   * 
28   * 
29   */
30  @XmlAccessorType(XmlAccessType.FIELD)
31  @XmlType(name = "setDescription", propOrder = {
32      "arg0",
33      "arg1"
34  })
35  public class SetDescription {
36  
37      @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
38      protected int arg0;
39      @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
40      protected String arg1;
41  
42      /**
43       * Gets the value of the arg0 property.
44       * 
45       */
46      public int getArg0() {
47          return arg0;
48      }
49  
50      /**
51       * Sets the value of the arg0 property.
52       * 
53       */
54      public void setArg0(int value) {
55          this.arg0 = value;
56      }
57  
58      /**
59       * Gets the value of the arg1 property.
60       * 
61       * @return
62       *     possible object is
63       *     {@link String }
64       *     
65       */
66      public String getArg1() {
67          return arg1;
68      }
69  
70      /**
71       * Sets the value of the arg1 property.
72       * 
73       * @param value
74       *     allowed object is
75       *     {@link String }
76       *     
77       */
78      public void setArg1(String value) {
79          this.arg1 = value;
80      }
81  
82  }