OSDN Git Service

サンプル作成
[jaxcel/jaxcel.git] / Jaxcel / src / org / hanei / jaxcel / example / SampleObject.java
1 /**
2  * Copyright 2014 Hanei Management Co.,Ltd. 
3  * 
4  * This file is part of Jaxcel
5  * 
6  *  Jaxcel is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU Lesser General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  Jaxcel is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU Lesser General Public License for more details.
15  *
16  *  You should have received a copy of the GNU Lesser General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package org.hanei.jaxcel.example;
20
21 /**
22  * サンプルデータオブジェクト
23  * 
24  * @author noboru saito
25  */
26 public class SampleObject {
27         private String  dataA;
28         private int     dataB;
29         private double  dataC;
30         private boolean dataD;
31
32         public String  dataApub;
33         public int     dataBpub;
34         public double  dataCpub;
35         public boolean dataDpub;
36         
37         /**
38          * @return dataA
39          */
40         public String getDataA() {
41                 return dataA;
42         }
43         /**
44          * @param dataA セットする dataA
45          */
46         public void setDataA(String dataA) {
47                 this.dataA = dataA;
48         }
49         /**
50          * @return dataB
51          */
52         public int getDataB() {
53                 return dataB;
54         }
55         /**
56          * @param dataB セットする dataB
57          */
58         public void setDataB(int dataB) {
59                 this.dataB = dataB;
60         }
61         /**
62          * @return dataC
63          */
64         public double getDataC() {
65                 return dataC;
66         }
67         /**
68          * @param dataC セットする dataC
69          */
70         public void setDataC(double dataC) {
71                 this.dataC = dataC;
72         }
73         /**
74          * @return dataD
75          */
76         public boolean isDataD() {
77                 return dataD;
78         }
79         /**
80          * @param dataD セットする dataD
81          */
82         public void setDataD(boolean dataD) {
83                 this.dataD = dataD;
84         }
85         
86 }