| java.lang.Object com.jeta.swingbuilder.app.UserPropertiesStore
Method Summary | |
public String | getProperty(String keyName) Reads the named property for the given keyname from the user properties
store. | public String | getProperty(String keyName, String defaultValue) Reads the named property for the given key from the user properties
store. | public void | setProperty(String keyName, String value) Stores the named property for the given key to the user properties store. | public void | setReadOnly(boolean readonly) | public void | shutdown() | public void | startup() TSComponent implementation. |
UserPropertiesStore | public UserPropertiesStore()(Code) | | |
getProperty | public String getProperty(String keyName)(Code) | | Reads the named property for the given keyname from the user properties
store. This method does not throw any exceptions, it is assumed the
implementor will log the exception somewhere
Parameters: keyName - the unique key name to get the property for the property string. Null is returned if the string is not found |
getProperty | public String getProperty(String keyName, String defaultValue)(Code) | | Reads the named property for the given key from the user properties
store. This method does not throw any exceptions, it is assumed the
implementor will log the exception somewhere
Parameters: keyName - the unique key name within that component to get the propertyfor Parameters: defaultValue - if the key is not found, return this value the property string. Null is returned if the string is not found |
setProperty | public void setProperty(String keyName, String value)(Code) | | Stores the named property for the given key to the user properties store.
This method does not throw any exceptions, it is assumed the implementor
will log the exception somewhere
|
setReadOnly | public void setReadOnly(boolean readonly)(Code) | | |
shutdown | public void shutdown()(Code) | | |
startup | public void startup()(Code) | | TSComponent implementation. Get's called by JETARegistry at startup
|
|
|