blob: 88451da0f3f2d69f2ace61053968093946241d3e (
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
|
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 {
super("{0002DF01-0000-0000-C000-000000000046}", "{0002DF05-0000-0000-C000-000000000046}");
}
public IWebBrowserApp(IUnknown parent) throws IOException, OLEInvalidObjectException {
super(parent, "{0002DF05-0000-0000-C000-000000000046}");
}
public native void put_Visible(boolean var1);
public native void put_StatusBar(boolean var1);
public native void put_MenuBar(boolean var1);
public native void Navigate(String var1);
public native void Quit();
}
|