1 16 package org.apache.myfaces.examples.listexample; 17 18 import java.io.Serializable ; 19 20 27 public class TreeItem implements Serializable 28 { 29 private int id; 30 31 private String name; 32 33 private String isoCode; 34 35 private String description; 36 37 38 44 public TreeItem(int id, String name, String isoCode, String description) 45 { 46 this.id = id; 47 this.name = name; 48 this.isoCode = isoCode; 49 this.description = description; 50 } 51 52 55 public String getDescription() 56 { 57 return description; 58 } 59 60 63 public void setDescription(String description) 64 { 65 this.description = description; 66 } 67 68 71 public int getId() 72 { 73 return id; 74 } 75 76 79 public void setId(int id) 80 { 81 this.id = id; 82 } 83 84 87 public String getIsoCode() 88 { 89 return isoCode; 90 } 91 92 95 public void setIsoCode(String isoCode) 96 { 97 this.isoCode = isoCode; 98 } 99 100 103 public String getName() 104 { 105 return name; 106 } 107 108 111 public void setName(String name) 112 { 113 this.name = name; 114 } 115 } 116 | Popular Tags |