001 /*
002 * Copyright 2005,2009 Ivan SZKIBA
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.ini4j.sample;
017
018 //<editor-fold defaultstate="collapsed" desc="apt documentation">
019 //|
020 //| ----------------
021 //| DwarfsBean class
022 //|
023 //|DwarfsBean class
024 //|
025 //</editor-fold>
026 //{
027 public class DwarfsBean implements Dwarfs
028 {
029 private Dwarf _bashful;
030 private Dwarf _doc;
031 private Dwarf _dopey;
032 private Dwarf _grumpy;
033 private Dwarf _happy;
034 private Dwarf _sleepy;
035 private Dwarf _sneezy;
036
037 @Override public Dwarf getBashful()
038 {
039 return _bashful;
040 }
041
042 public void setBashful(Dwarf value)
043 {
044 _bashful = value;
045 }
046
047 @Override public Dwarf getDoc()
048 {
049 return _doc;
050 }
051
052 public void setDoc(Dwarf value)
053 {
054 _doc = value;
055 }
056
057 @Override public Dwarf getDopey()
058 {
059 return _dopey;
060 }
061
062 public void setDopey(Dwarf value)
063 {
064 _dopey = value;
065 }
066
067 @Override public Dwarf getGrumpy()
068 {
069 return _grumpy;
070 }
071
072 public void setGrumpy(Dwarf value)
073 {
074 _grumpy = value;
075 }
076
077 @Override public Dwarf getHappy()
078 {
079 return _happy;
080 }
081
082 public void setHappy(Dwarf value)
083 {
084 _happy = value;
085 }
086
087 @Override public Dwarf getSleepy()
088 {
089 return _sleepy;
090 }
091
092 public void setSleepy(Dwarf value)
093 {
094 _sleepy = value;
095 }
096
097 @Override public Dwarf getSneezy()
098 {
099 return _sneezy;
100 }
101
102 public void setSneezy(Dwarf value)
103 {
104 _sneezy = value;
105 }
106 }
107 //}