1 16 17 18 package org.apache.commons.betwixt.introspection; 19 20 25 public class PhoneNumberBean { 26 private String phoneNumber; 27 private String name; 28 private String type; 30 31 public PhoneNumberBean() {} 32 33 public PhoneNumberBean(String phoneNumber, String type) { 34 setPhoneNumber(phoneNumber); 35 setType(type); 36 } 37 38 public String getPhoneNumber() { 39 return phoneNumber; 40 } 41 42 public void setPhoneNumber(String string) { 43 phoneNumber = string; 44 } 45 46 47 public String getType() { 48 return type; 49 } 50 51 public void setType(String string) { 52 type = string; 53 } 54 55 public String getName() { 56 return name; 57 } 58 59 public void setName(String string) { 60 name = string; 61 } 62 63 } 64 65 66 | Popular Tags |