blob: f7f78eea725f4a8fa3468ef4321061d1a6374feb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package NET.worlds.console;
import java.io.IOException;
public class INetscapeRegistry extends IDispatch {
public INetscapeRegistry() throws IOException {
super("Netscape.Registry.1");
}
public native boolean RegisterViewer(String var1, String var2) throws IOException;
public native boolean RegisterProtocol(String var1, String var2) throws IOException;
@Override
public String toString() {
return "INetscapeRegistry(" + this.internalData() + ")";
}
}
|