KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > inheritance > filtered > Animal


1 /**
2  * Copyright (C) 2001-2004 France Telecom R&D
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */

18 package org.objectweb.speedo.pobjects.inheritance.filtered;
19
20 /**
21  *
22  * @author S.Chassande-Barrioz
23  */

24 public abstract class Animal {
25
26     protected String JavaDoc name = "";
27     protected String JavaDoc species = "";
28     protected int size = 0;
29     protected boolean isMale = true;
30     protected long f1 = 0;
31
32     public Animal() {
33     }
34
35     public Animal(String JavaDoc name, String JavaDoc species, int size, boolean male, long f1) {
36         this.name = name;
37         this.species = species;
38         this.size = size;
39         isMale = male;
40         this.f1 = f1;
41     }
42
43     public String JavaDoc getName() {
44         return name;
45     }
46
47     public void setName(String JavaDoc name) {
48         this.name = name;
49     }
50
51     public String JavaDoc retrieveSpecies() {
52         return species;
53     }
54
55     public void assignSpecies(String JavaDoc species) {
56         this.species = species;
57     }
58
59     public int retrieveSize() {
60         return size;
61     }
62
63     public void assignSize(int size) {
64         this.size = size;
65     }
66
67     public boolean retrieveIsMale() {
68         return isMale;
69     }
70
71     public void assignMale(boolean male) {
72         isMale = male;
73     }
74
75     public long retrieveF1() {
76         return f1;
77     }
78
79     public void assignF1(long f1) {
80         this.f1 = f1;
81     }
82 }
83
Popular Tags