KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > samples2docclient > OrderItem


1 /*
2 * JBoss, the OpenSource J2EE webOS
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */

7 // This class was generated by the JAXRPC SI, do not edit.
8
// Contents subject to change without notice.
9
// JAX-RPC Standard Implementation (1.1.2_01, build R40)
10
// Generated source version: 1.1.2
11

12 package org.jboss.test.webservice.samples2docclient;
13
14
15 public class OrderItem
16 {
17    protected java.lang.String JavaDoc name;
18    protected int quantity;
19
20    public OrderItem()
21    {
22    }
23
24    public OrderItem(java.lang.String JavaDoc name, int quantity)
25    {
26       this.name = name;
27       this.quantity = quantity;
28    }
29
30    public java.lang.String JavaDoc getName()
31    {
32       return name;
33    }
34
35    public void setName(java.lang.String JavaDoc name)
36    {
37       this.name = name;
38    }
39
40    public int getQuantity()
41    {
42       return quantity;
43    }
44
45    public void setQuantity(int quantity)
46    {
47       this.quantity = quantity;
48    }
49 }
50
Popular Tags