| |
|
| java.lang.Object com.salmonllc.win32.Registry
Registry | public class Registry (Code) | | Licensed Material - Property of Salmon LLC
(C) Copyright Salmon LLC. 1999 - All Rights Reserved
For more information go to www.salmonllc.com
DISCLAIMER:
The following code has been created by Salmon LLC. The code is provided
'AS IS' , without warranty of any kind unless covered in another agreement
between your corporation and Salmon LLC. Salmon LLC shall not be liable
for any damages arising out of your use of this, even if they have been
advised of the possibility of such damages.
This class is used to set a key in the registry. Use the setRegistryEntry method. This class requires REGUPDATE.dll
To be distributed with it.
Creation date: (4/16/02 11:43:10 AM)
author: : Fred Cahill |
Method Summary | |
public int | getIntAttribute(String sAttribute) Use this method to get a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be gotten. | public String | getStringAttribute(String sAttribute) Use this method to get a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be gotten. | public static synchronized void | loadJNILibrary(String sLibrary) This method specifies the JNI Secure ID dll to use. | public static void | main(String[] args) Insert the method's description here. | public void | setIntAttribute(String sAttribute, int iValue) Use this method to set a registry value. | public void | setStringAttribute(String sAttribute, String sValue) Use this method to set a registry value. |
HKEY_CLASSES_ROOT | final public static int HKEY_CLASSES_ROOT(Code) | | |
HKEY_CURRENT_USER | final public static int HKEY_CURRENT_USER(Code) | | |
HKEY_LOCAL_MACHINE | final public static int HKEY_LOCAL_MACHINE(Code) | | |
HKEY_USERS | final public static int HKEY_USERS(Code) | | |
getIntAttribute | public int getIntAttribute(String sAttribute) throws RegistryException(Code) | | Use this method to get a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be gotten. The value of the attribute. |
getStringAttribute | public String getStringAttribute(String sAttribute) throws RegistryException(Code) | | Use this method to get a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be gotten. The value of the attribute. |
loadJNILibrary | public static synchronized void loadJNILibrary(String sLibrary)(Code) | | This method specifies the JNI Secure ID dll to use.
Parameters: sLibrary - The name of the dll to be loaded. |
main | public static void main(String[] args)(Code) | | Insert the method's description here.
Creation date: (4/16/02 12:00:24 PM)
Parameters: args - java.lang.String[] |
setIntAttribute | public void setIntAttribute(String sAttribute, int iValue) throws RegistryException(Code) | | Use this method to set a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be set. Parameters: iValue - int This is the value to set the attribute to. |
setStringAttribute | public void setStringAttribute(String sAttribute, String sValue) throws RegistryException(Code) | | Use this method to set a registry value.
Parameters: sAttribute - java.lang.String This is the attribute in the key to be set. Parameters: sValue - java.lang.String This is the value to set the attribute to. |
|
|
|