*not part of the build*

fix for 79289


git-svn-id: svn://10.0.0.236/trunk@94509 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
2001-05-10 20:31:26 +00:00
parent dc52853208
commit 89e9a6734e
15 changed files with 222 additions and 47 deletions

View File

@@ -23,18 +23,24 @@
package org.mozilla.xpcom;
public class Components {
public static nsIComponentManager getComponentManager() {
return componentMgr;
}
public static void setComponentManager(nsIComponentManager mgr) {
componentMgr = mgr;
}
public static nsIXPIDLServiceManager getServiceManager() {
return serviceMgr;
}
public static void setServiceManager(nsIXPIDLServiceManager mgr) {
serviceMgr = mgr;
}
private static nsIComponentManager componentMgr = null;
private static nsIXPIDLServiceManager serviceMgr = null;
public static nsIComponentManager getComponentManager() {
return componentMgr;
}
public static void setComponentManager(nsIComponentManager mgr) {
componentMgr = mgr;
}
public static nsIXPIDLServiceManager getServiceManager() {
return serviceMgr;
}
public static void setServiceManager(nsIXPIDLServiceManager mgr) {
serviceMgr = mgr;
}
public static native void initXPCOM();
private static nsIComponentManager componentMgr = null;
private static nsIXPIDLServiceManager serviceMgr = null;
static {
System.loadLibrary("blackconnectjni");
}
};

View File

@@ -81,12 +81,3 @@ public class Utilities {
System.loadLibrary("bcjavastubs");
}
}