1 16 package org.apache.commons.betwixt.recursion; 17 18 19 20 26 public class IdBean 27 { 28 private String id; 29 private String notId; 30 31 public IdBean(String id) 32 { 33 setId(id); 34 } 35 36 public String getId() 37 { 38 return id; 39 } 40 41 public void setId(String id) 42 { 43 this.id = id; 44 } 45 46 public String getNotId() 47 { 48 return notId; 49 } 50 51 public void setNotId(String notId) 52 { 53 this.notId = notId; 54 } 55 } 56 | Popular Tags |