package A; import A.B; /** The class A this and that. But have a look at B too. @see B */ public class A { /** The constructor A does nothing special. @param a Nothing special @param b Nothing special @param c Nothing special */ public A(int a, String b, float c){ super(); } /** The method b returns c/5 which is really useful sometimes. @param a Nothing special @param b Nothing special @param c Nothing special @return the float 5/c is returned @exception Exception Division by zero */ public float b(int a, String b, float c) throws Exception { return 5/c; } }