01: /**
02: * Copyright (C) 2007 jMind Consulting Kft.
03: * All rights reserved.
04: */package hu.netmind.persistence;
05:
06: /**
07: * @author Brautigam Robert
08: * @version Revision: $Revision$
09: */
10: public abstract class Bird {
11: private int speed;
12:
13: public Bird(int speed) {
14: this.speed = speed;
15: }
16: }
|