1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package net.sf.json.sample;
18
19 import java.util.List;
20
21
22
23
24 public class EmptyBean {
25 private Object[] arrayp;
26 private Byte bytep;
27 private Character charp;
28 private Double doublep;
29 private Float floatp;
30 private Integer intp;
31 private List listp;
32 private Long longp;
33 private Short shortp;
34 private String stringp;
35
36 public Object[] getArrayp() {
37 return arrayp;
38 }
39
40 public Byte getBytep() {
41 return bytep;
42 }
43
44 public Character getCharp() {
45 return charp;
46 }
47
48 public Double getDoublep() {
49 return doublep;
50 }
51
52 public Float getFloatp() {
53 return floatp;
54 }
55
56 public Integer getIntp() {
57 return intp;
58 }
59
60 public List getListp() {
61 return listp;
62 }
63
64 public Long getLongp() {
65 return longp;
66 }
67
68 public Short getShortp() {
69 return shortp;
70 }
71
72 public String getStringp() {
73 return stringp;
74 }
75
76 public void setArrayp( Object[] arrayp ) {
77 this.arrayp = arrayp;
78 }
79
80 public void setBytep( Byte bytep ) {
81 this.bytep = bytep;
82 }
83
84 public void setCharp( Character charp ) {
85 this.charp = charp;
86 }
87
88 public void setDoublep( Double doublep ) {
89 this.doublep = doublep;
90 }
91
92 public void setFloatp( Float floatp ) {
93 this.floatp = floatp;
94 }
95
96 public void setIntp( Integer intp ) {
97 this.intp = intp;
98 }
99
100 public void setListp( List listp ) {
101 this.listp = listp;
102 }
103
104 public void setLongp( Long longp ) {
105 this.longp = longp;
106 }
107
108 public void setShortp( Short shortp ) {
109 this.shortp = shortp;
110 }
111
112 public void setStringp( String stringp ) {
113 this.stringp = stringp;
114 }
115 }