summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java
diff options
context:
space:
mode:
authorChristophe Cornu <ccornu>2004-11-23 21:26:38 +0000
committerChristophe Cornu <ccornu>2004-11-23 21:26:38 +0000
commit6c47784c5a7b45e769c078aad8b37a11143d5176 (patch)
tree094cc6a507cbcdc05ece310df2d5d6bf82178987 /bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java
parent4cc5ca7de1624c8b539a57f5d1339651e93d2a21 (diff)
downloadeclipse.platform.swt-6c47784c5a7b45e769c078aad8b37a11143d5176.tar.gz
eclipse.platform.swt-6c47784c5a7b45e769c078aad8b37a11143d5176.tar.xz
eclipse.platform.swt-6c47784c5a7b45e769c078aad8b37a11143d5176.zip
64 bit
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java
index 36ce11afb6..fac9186a9f 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIIOService.java
@@ -31,17 +31,17 @@ public class nsIIOService extends nsISupports {
static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 10;
- public static final String NS_IIOSERVICE_IID_STRING =
+ public static final String NS_IIOSERVICE_IID_STR =
"bddeda3f-9020-4d12-8c70-984ee9f7935e";
public static final nsID NS_IIOSERVICE_IID =
- new nsID(NS_IIOSERVICE_IID_STRING);
+ new nsID(NS_IIOSERVICE_IID_STR);
- public nsIIOService(int address) {
+ public nsIIOService(int /*long*/ address) {
super(address);
}
- public int GetProtocolHandler(byte[] aScheme, int[] _retval) {
+ public int GetProtocolHandler(byte[] aScheme, int /*long*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aScheme, _retval);
}
@@ -49,19 +49,19 @@ public class nsIIOService extends nsISupports {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aScheme, _retval);
}
- public int NewURI(int aSpec, byte[] aOriginCharset, int aBaseURI, int[] _retval) {
+ public int NewURI(int /*long*/ aSpec, byte[] aOriginCharset, int /*long*/ aBaseURI, int /*long*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aSpec, aOriginCharset, aBaseURI, _retval);
}
- public int NewFileURI(int aFile, int[] _retval) {
+ public int NewFileURI(int /*long*/ aFile, int /*long*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress(), aFile, _retval);
}
- public int NewChannelFromURI(int aURI, int[] _retval) {
+ public int NewChannelFromURI(int /*long*/ aURI, int /*long*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 5, getAddress(), aURI, _retval);
}
- public int NewChannel(int aSpec, byte[] aOriginCharset, int aBaseURI, int[] _retval) {
+ public int NewChannel(int /*long*/ aSpec, byte[] aOriginCharset, int /*long*/ aBaseURI, int /*long*/[] _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 6, getAddress(), aSpec, aOriginCharset, aBaseURI, _retval);
}
@@ -74,10 +74,10 @@ public class nsIIOService extends nsISupports {
}
public int AllowPort(int aPort, byte[] aScheme, boolean[] _retval) {
- return XPCOM.NS_ERROR_NOT_IMPLEMENTED;
+ return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 9, getAddress(), aPort, aScheme, _retval);
}
- public int ExtractScheme(int urlString, int _retval) {
+ public int ExtractScheme(int /*long*/ urlString, int /*long*/ _retval) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 10, getAddress(), urlString, _retval);
}
} \ No newline at end of file