1 7 package com.inversoft.verge.repository.test; 8 9 10 import com.inversoft.verge.mvc.controller.Action; 11 12 13 20 public class SimpleItem { 21 22 private String name; 23 private Integer age; 24 private Float money; 25 private SimpleItem2 reference; 26 27 32 public String getName() { 33 return name; 34 } 35 36 41 public void setName(String name) { 42 this.name = name; 43 } 44 45 50 public Integer getAge() { 51 return age; 52 } 53 54 59 public void setAge(Integer age) { 60 this.age = age; 61 } 62 63 68 public Float getMoney() { 69 return money; 70 } 71 72 77 public void setMoney(Float money) { 78 this.money = money; 79 } 80 81 86 public SimpleItem2 getReference() { 87 return reference; 88 } 89 90 95 public void setReference(SimpleItem2 reference) { 96 this.reference = reference; 97 } 98 99 102 public void handleAction(Action action) { 103 } 104 105 108 public String getFailProperty() throws Exception { 109 throw new Exception (); 110 } 111 112 115 public void setFailProperty(String value) throws Exception { 116 throw new Exception (); 117 } 118 } | Popular Tags |