001    /**
002     * A dummy class A1.
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public class A1 {
008            /**
009             * Default constructor for objects of class A1
010             */
011            public A1() {
012                    System.out.println("Creating an A1");
013            }
014    
015            /**
016             * Non-default constructor for objects of class A1
017             */
018            public A1(String s) {
019                    System.out.println("Creating an A1" + s);
020            }
021    }