001    /**
002     * Part of the rodent hierarchy. Part of exercise 7.6 and 7.7.
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    
008    public class Gerbil extends Rodent {
009            /**
010             * Tell how I'm
011             */
012            public void myself() {
013                    System.out.println("I'm a gerbil");
014            }
015    }