blob: 6b7ce28abfea13f80efd489a10cf07f6991df8ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* */ package NET.worlds.console;
/* */
/* */ import java.io.PrintStream;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class WebControlFactory
/* */ {
/* */ public static WebControlImp createWebControlImp(int hwnd, boolean hasToolbar, boolean isBanner)
/* */ throws NoWebControlException
/* */ {
/* */ try
/* */ {
/* 22 */ return new IEWebControlImp(hwnd, hasToolbar, isBanner);
/* */ } catch (Exception e) {
/* 24 */ System.out.println("WebControlImp blew chow: " + e.toString());
/* 25 */ throw new NoWebControlException();
/* */ }
/* */ }
/* */ }
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\console\WebControlFactory.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|