KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > gen > xmethods > IDNamePair


1 /**
2  * IDNamePair.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
6  */

7
8 package org.objectweb.jonas.jtests.gen.xmethods;
9
10 public class IDNamePair implements java.io.Serializable JavaDoc {
11     private java.lang.String JavaDoc id;
12     private java.lang.String JavaDoc name;
13
14     public IDNamePair() {
15     }
16
17
18     /**
19      * Gets the id value for this IDNamePair.
20      *
21      * @return id
22      */

23     public java.lang.String JavaDoc getId() {
24         return id;
25     }
26
27
28     /**
29      * Sets the id value for this IDNamePair.
30      *
31      * @param id
32      */

33     public void setId(java.lang.String JavaDoc id) {
34         this.id = id;
35     }
36
37
38     /**
39      * Gets the name value for this IDNamePair.
40      *
41      * @return name
42      */

43     public java.lang.String JavaDoc getName() {
44         return name;
45     }
46
47
48     /**
49      * Sets the name value for this IDNamePair.
50      *
51      * @param name
52      */

53     public void setName(java.lang.String JavaDoc name) {
54         this.name = name;
55     }
56 }
57
Popular Tags