Package ca.beq.util.win32.registry

Provides classes to manipulate the Windows registry.

See:
          Description

Class Summary
KeyIterator KeyIterator provides methods to iterate through the subkeys of a particular registry key.
RegistryKey A representation of system registry keys, RegistryKey is the principle class of the ca.beq.util.win32.registry package.
RegistryValue A representation of registry values.
RootKey The Windows operating system defines standard registry keys ("root keys", represented by RootKey) that are always open.
ValueIterator ValueIterator provides methods to iterate through the values of a particular registry key.
ValueType Registry values (data) can be stored in various formats (types), represented by ValueType.
 

Exception Summary
RegistryException RegistryException signals that a registry operation has failed.
 

Package ca.beq.util.win32.registry Description

Provides classes to manipulate the Windows registry. The registry is a Windows-specific system-defined database in which applications and system components store and retrieve configuration data.

The registry stores data in a hierarchically structured tree. Each node in the tree is called a key. Each key can contain both subkeys and name-value data entries called values.