summaryrefslogtreecommitdiff
path: root/NET/worlds/console/INetscapeRegistry.java
diff options
context:
space:
mode:
Diffstat (limited to 'NET/worlds/console/INetscapeRegistry.java')
-rw-r--r--NET/worlds/console/INetscapeRegistry.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/NET/worlds/console/INetscapeRegistry.java b/NET/worlds/console/INetscapeRegistry.java
new file mode 100644
index 0000000..f7f78ee
--- /dev/null
+++ b/NET/worlds/console/INetscapeRegistry.java
@@ -0,0 +1,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() + ")";
+ }
+}