| java.lang.Object com.db.version.SystemProperties
SystemProperties | public class SystemProperties extends Object (Code) | | The SystemProperties class accesses general settings. It would be nice to access and control also the settings of the Virtual Machine, but as it is already launched, this sounds impossible. You therefore still have to use the -D parameter on the command line while launching Java.
|
Constructor Summary | |
public | SystemProperties() Builds the system properties access. |
SystemProperties | public SystemProperties()(Code) | | Builds the system properties access.
See Also: java.lang.System |
getProperties | public static Properties getProperties()(Code) | | Determines the current system properties.
|
getProperty | public static String getProperty(String key)(Code) | | Gets the system property indicated by the specified key.
|
getProperty | public static String getProperty(String key, String def)(Code) | | Gets the system property indicated by the specified key.
|
getPropertyDescription | public static String getPropertyDescription(String key)(Code) | | Gets the description corresponding to the system property indicated by the specified key.
|
setProperties | public static void setProperties(Properties props)(Code) | | Sets the system properties to the Properties argument.
|
setProperty | public static String setProperty(String key, String value)(Code) | | Sets the system property indicated by the specified key.
|
|
|