| com.jeta.swingbuilder.interfaces.userprops.TSUserProperties
All known Subclasses: com.jeta.swingbuilder.app.UserPropertiesStore,
TSUserProperties | public interface TSUserProperties (Code) | | This interface describes a service used to store/retrive user properties
author: Jeff Tassin |
getProperty | public String getProperty(String keyName)(Code) | | Reads the named property for the given component 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 name 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. This method does not throw
any exceptions, it is assumed the implementor will log the exception
somewhere
|
|
|