| java.lang.Object org.swingml.SwingMLProperties
SwingMLProperties | public class SwingMLProperties (Code) | | author: ttolle@crosslogic.com |
Method Summary | |
public Set | entrySet() | public String | get(String key) Returns the value to which is mapped to the specified key.
Returns null if there is no mapping for this key. | public Set | keySet() | public String | put(String key, String value) Associates the specified value with the specified key. | public int | size() Returns the number of properties stored. | public static synchronized SwingMLProperties | sole() Gets the single instance of the SwingMLProperties object. |
get | public String get(String key)(Code) | | Returns the value to which is mapped to the specified key.
Returns null if there is no mapping for this key.
Parameters: key - key whose associated value is to be returned. the value for the specified key, or nullif the it contains no mapping for this key. |
put | public String put(String key, String value)(Code) | | Associates the specified value with the specified key. If
the map previously contained a mapping for this key, the
old value is replaced by the specified value.
Parameters: key - key with which the specified value is to be associated. Parameters: value - value to be associated with the specified key. previous value associated with specified key, or nullif there was no property value for key. |
size | public int size()(Code) | | Returns the number of properties stored.
the number of properties. |
sole | public static synchronized SwingMLProperties sole()(Code) | | Gets the single instance of the SwingMLProperties object.
|
|
|