View Javadoc

1   /*
2    * Copyright 2005,2009 Ivan SZKIBA
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  package org.ini4j.sample;
17  
18  //<editor-fold defaultstate="collapsed" desc="apt documentation">
19  //|
20  //|                ----------------
21  //|                DwarfsBean class
22  //|
23  //|DwarfsBean class
24  //|
25  //</editor-fold>
26  //{
27  public class DwarfsBean implements Dwarfs
28  {
29      private Dwarf _bashful;
30      private Dwarf _doc;
31      private Dwarf _dopey;
32      private Dwarf _grumpy;
33      private Dwarf _happy;
34      private Dwarf _sleepy;
35      private Dwarf _sneezy;
36  
37      @Override public Dwarf getBashful()
38      {
39          return _bashful;
40      }
41  
42      public void setBashful(Dwarf value)
43      {
44          _bashful = value;
45      }
46  
47      @Override public Dwarf getDoc()
48      {
49          return _doc;
50      }
51  
52      public void setDoc(Dwarf value)
53      {
54          _doc = value;
55      }
56  
57      @Override public Dwarf getDopey()
58      {
59          return _dopey;
60      }
61  
62      public void setDopey(Dwarf value)
63      {
64          _dopey = value;
65      }
66  
67      @Override public Dwarf getGrumpy()
68      {
69          return _grumpy;
70      }
71  
72      public void setGrumpy(Dwarf value)
73      {
74          _grumpy = value;
75      }
76  
77      @Override public Dwarf getHappy()
78      {
79          return _happy;
80      }
81  
82      public void setHappy(Dwarf value)
83      {
84          _happy = value;
85      }
86  
87      @Override public Dwarf getSleepy()
88      {
89          return _sleepy;
90      }
91  
92      public void setSleepy(Dwarf value)
93      {
94          _sleepy = value;
95      }
96  
97      @Override public Dwarf getSneezy()
98      {
99          return _sneezy;
100     }
101 
102     public void setSneezy(Dwarf value)
103     {
104         _sneezy = value;
105     }
106 }
107 //}