001    /**
002     * A circle that inherits from Shape. 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 Circle extends Shape {
008            /**
009             * Prints a string to the world
010             */
011            public void printString() {
012                    System.out.println("In Circle");
013            }
014    
015    }