blob: fbb0bd686195d57c44531e789870285a88135b4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package NET.worlds.console;
public class WebControlFactory {
public static WebControlImp createWebControlImp(int hwnd, boolean hasToolbar, boolean isBanner) throws NoWebControlException {
try {
return new IEWebControlImp(hwnd, hasToolbar, isBanner);
} catch (Exception var4) {
System.out.println("WebControlImp blew chow: " + var4.toString());
throw new NoWebControlException();
}
}
}
|