001    /**
002     * The root in the shape hierarchy. Part of exercise 7.1
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public class Shape {
008    
009            /**
010             * Prints a string to the world
011             */
012            public void printString() {
013                    System.out.println("In Shape");
014            }
015    }