KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws663 > CountryCode


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

6 package org.jboss.test.webservice.jbws663;
7
8
9 public class CountryCode {
10     protected java.lang.String JavaDoc country;
11     protected java.lang.String JavaDoc code;
12     
13     public CountryCode() {
14     }
15     
16     public CountryCode(java.lang.String JavaDoc country, java.lang.String JavaDoc code) {
17         this.country = country;
18         this.code = code;
19     }
20     
21     public java.lang.String JavaDoc getCountry() {
22         return country;
23     }
24     
25     public void setCountry(java.lang.String JavaDoc country) {
26         this.country = country;
27     }
28     
29     public java.lang.String JavaDoc getCode() {
30         return code;
31     }
32     
33     public void setCode(java.lang.String JavaDoc code) {
34         this.code = code;
35     }
36 }
37
Popular Tags