1   /*
2    * Copyright 2002-2009 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package net.sf.json.sample;
18  
19  import java.util.List;
20  
21  /**
22   * @author Andres Almiray <aalmiray@users.sourceforge.net>
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 }