001    /**
002     * Test interface 123 uses three other interfaces
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public interface Interface123 extends Interface1, Interface2, Interface3 {
008            String g();
009    }