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    public class Mouse extends Rodent {
008    
009            /**
010             * Tell how I'm
011             */
012            public void myself() {
013                    System.out.println("I'm a mouse");
014            }
015    }