1 25 26 package org.objectweb.speedo.pobjects.fetchgroup; 27 28 31 public class Country { 32 33 private String code; 34 private String name; 35 36 public Country() { 37 } 38 39 public Country(String code, String name){ 40 this.code = code; 41 this.name = name; 42 } 43 44 public String getCode() { 45 return code; 46 } 47 48 public void setCode(String code) { 49 this.code = code; 50 } 51 52 public String getName() { 53 return name; 54 } 55 56 public void setName(String name) { 57 this.name = name; 58 } 59 60 public String toString(){ 61 return "Country[" + code + ", " + name + "]"; 62 } 63 } 64 | Popular Tags |