From eb9ea6832c4e388d5b479dc6cef8534b72bc2fdf Mon Sep 17 00:00:00 2001 From: "Xiaobin.Lu%eng.Sun.com" Date: Wed, 4 Apr 2001 22:14:43 +0000 Subject: [PATCH] Bug 68933 r=Ed Burns and Mike Shaver sr=Mike Shaver Function name changed due to idl convention --- modules/oji/public/nsIJVMManager.idl | 32 +++++++++++----------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/modules/oji/public/nsIJVMManager.idl b/modules/oji/public/nsIJVMManager.idl index 86f792633357..80b4129d3ee4 100644 --- a/modules/oji/public/nsIJVMManager.idl +++ b/modules/oji/public/nsIJVMManager.idl @@ -71,44 +71,38 @@ interface nsIJVMManager : nsISupports { * calling this method multiple times from the same thread will return * the same proxy JNI. */ - [noscript] void CreateProxyJNI(in nsISecureEnv secureEnv, out JNIEnv outProxyEnv); + [noscript] void createProxyJNI(in nsISecureEnv secureEnv, out JNIEnv outProxyEnv); /** * Returns the proxy JNI associated with the current thread, or NULL if no * such association exists. */ - [noscript] void GetProxyJNI(out JNIEnv outProxyEnv); - - /** - * Returns whether or not Java is enabled. - */ - void IsJavaEnabled(out boolean outEnabled); - - /** - * Returns whether or not Java is enabled. - */ - boolean JavaEnabled(); + [noscript] void getProxyJNI(out JNIEnv outProxyEnv); /** * Called from Java Console menu item. */ - void ShowJavaConsole(); + void showJavaConsole(); /** - * IsAllPermissionGranted [Deprecated Sep-10-2000] + * isAllPermissionGranted [Deprecated Sep-10-2000] */ - void IsAllPermissionGranted(in string lastFingerprint,in string lastCommonName, - in string rootFingerprint,in string rootCommonName, - out boolean isGranted); + boolean isAllPermissionGranted(in string lastFingerprint,in string lastCommonName, + in string rootFingerprint,in string rootCommonName); /** - * IsAppletTrusted + * isAppletTrusted */ - nsIPrincipal IsAppletTrusted(in string aRSABuf, in PRUint32 aRSABufLen, + nsIPrincipal isAppletTrusted(in string aRSABuf, in PRUint32 aRSABufLen, in string aPlaintext, in PRUint32 aPlaintextLen, out boolean isTrusted); + /** + * The JavaEnabled variable to see if Java is Enabled or not + */ + + readonly attribute boolean JavaEnabled; };