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 class Swallow extends Bird {
11: private String type;
12:
13: public Swallow() {
14: super (10); // 10 m/s is the speed of an european unladen swallow
15: // Source: http://www.style.org/unladenswallow/
16: type = "european";
17: }
18: }
|