1 package test1;
2 
3 import java.io.IOException;
4 
5 class Howard4 implements HowardHome {
6     int n = 0;
create()7     public Object create() throws IOException {
8         if (n == 1)
9             throw new IOException();
10         else
11             return "howard4";
12     }
13 }
14 
15 interface HowardHome {
create()16     Object create() throws IOException;
17 }
18 
19 class Howard2 {
lookup(String n)20     Object lookup(String n) { return new Howard4(); }
21 }
22 
23 public class Howard extends Howard2 {
24     @SuppressWarnings("unused")
25     private Object _remote;
26 
run()27     public int run() {
28         return 0;
29     }
30 }
31