Uses of Class
com.jniwrapper.win32.registry.RegistryKey

Packages that use RegistryKey
com.jniwrapper.win32.registry The com.jniwrapper.win32.registry package contains classes for working with system registry. 
com.jniwrapper.win32.registry.ui The com.jniwrapper.win32.process.ui package contains classes that can be helpful in displaying system registry tree in GUI. 
com.jniwrapper.win32.service The com.jniwrapper.win32.service package contains classes for working with Windows services. 
 

Uses of RegistryKey in com.jniwrapper.win32.registry
 

Fields in com.jniwrapper.win32.registry declared as RegistryKey
static RegistryKey RegistryKey.CLASSES_ROOT
          Windows registry base key HKEY_CLASSES_ROOT.
static RegistryKey RegistryKey.CURRENT_CONFIG
          Windows registry base key HKEY_CURRENT_CONFIG.
static RegistryKey RegistryKey.CURRENT_USER
          Windows registry base key HKEY_CURRENT_USER.
static RegistryKey RegistryKey.DYN_DATA
          Windows registry base key HKEY_DYN_DATA.
static RegistryKey RegistryKey.LOCAL_MACHINE
          Windows registry base key HKEY_LOCAL_MACHINE.
static RegistryKey RegistryKey.PERFORMANCE_DATA
          Windows registry base key HKEY_PERFORMANCE_DATA.
static RegistryKey RegistryKey.USERS
          Windows registry base key HKEY_USERS.
 

Methods in com.jniwrapper.win32.registry that return RegistryKey
 RegistryKey RegistryKey.copy(RegistryKey newBase, java.lang.String newName, boolean quietly)
          Copies opened key to another base with new name.
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey)
          Creates a new subkey or opens an existing one.
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey, boolean writable)
          Creates a new subkey or opens an existing one, with write access as specified.
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey, boolean writable, RegistryKey.RegistryAccessMode accessMode)
          Creates a new subkey or opens an existing one, with write access as specified.
 RegistryKey RegistryKey.createSubKey(java.lang.String subKey, RegistryKey.RegistryAccessMode accessMode)
          Creates a new subkey or opens an existing one, with write access as specified.
 RegistryKey RegistryKey.getRootKey()
          Returns the Root of this registry key.
 RegistryKey RegistryKey.openSubKey(java.lang.String name)
          Opens a subkey by the specified name (as read-only).
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable, boolean quietly)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable, boolean quietly, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, boolean writable, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.
 RegistryKey RegistryKey.openSubKey(java.lang.String name, RegistryKey.RegistryAccessMode accessMode)
          Opens a subkey by the specified name.
 

Methods in com.jniwrapper.win32.registry with parameters of type RegistryKey
 RegistryKey RegistryKey.copy(RegistryKey newBase, java.lang.String newName, boolean quietly)
          Copies opened key to another base with new name.
 

Constructors in com.jniwrapper.win32.registry with parameters of type RegistryKey
RegistryKeyValues(RegistryKey registryKey)
           
 

Uses of RegistryKey in com.jniwrapper.win32.registry.ui
 

Methods in com.jniwrapper.win32.registry.ui that return RegistryKey
 RegistryKey RegistryTreeModel.RegistryKeyNode.getRegistryKey()
           
 RegistryKey RegistryKeyValuesTableModel.getRegistryKey()
           
 

Methods in com.jniwrapper.win32.registry.ui with parameters of type RegistryKey
 void RegistryKeyValuesTableModel.setRegistryKey(RegistryKey registryKey)
           
 void RegistryTreeModel.setRootRegistryKey(RegistryKey rootRegistryKey)
          Sets a root registry key.
 

Constructors in com.jniwrapper.win32.registry.ui with parameters of type RegistryKey
RegistryKeyValuesTableModel(RegistryKey registryKey)
           
RegistryTreeModel.RegistryKeyNode(RegistryKey registryKey)
           
RegistryTreeModel(RegistryKey rootRegistryKey)
          Creates a model with a specified registry key in the root.
 

Uses of RegistryKey in com.jniwrapper.win32.service
 

Methods in com.jniwrapper.win32.service that return RegistryKey
 RegistryKey Service.createParametersKey()
          Creates parameters subkey in registry.