blob: bda3b65ce8e7cb24789e5a50d4d109c0ac92a004 (
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
35
36
37
38
|
/* */ package NET.worlds.console;
/* */
/* */ import java.io.IOException;
/* */
/* */
/* */ public class IWebBrowserApp
/* */ extends IUnknown
/* */ {
/* */ public static final String CLSID_InternetExplorer = "{0002DF01-0000-0000-C000-000000000046}";
/* */ public static final String IID_IWebBrowserApp = "{0002DF05-0000-0000-C000-000000000046}";
/* */
/* */ public IWebBrowserApp()
/* */ throws IOException
/* */ {
/* 15 */ super("{0002DF01-0000-0000-C000-000000000046}", "{0002DF05-0000-0000-C000-000000000046}");
/* */ }
/* */
/* */ public IWebBrowserApp(IUnknown parent) throws IOException, OLEInvalidObjectException
/* */ {
/* 20 */ super(parent, "{0002DF05-0000-0000-C000-000000000046}");
/* */ }
/* */
/* */ public native void put_Visible(boolean paramBoolean);
/* */
/* */ public native void put_StatusBar(boolean paramBoolean);
/* */
/* */ public native void put_MenuBar(boolean paramBoolean);
/* */
/* */ public native void Navigate(String paramString);
/* */
/* */ public native void Quit();
/* */ }
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\console\IWebBrowserApp.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|