Class XMLPreferenceManager.XMLProperties
java.lang.Object
java.util.Dictionary<Object,Object>
java.util.Hashtable<Object,Object>
java.util.Properties
org.apache.batik.apps.svgbrowser.XMLPreferenceManager.XMLProperties
- All Implemented Interfaces:
Serializable, Cloneable, Map<Object,Object>
- Enclosing class:
XMLPreferenceManager
To store the preferences.
- Version:
- $Id$
- See Also:
-
Field Summary
Fields inherited from class Properties
defaults -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate voidEnumerates all key/value pairs in the specified m.voidload(InputStream is) Reads a property list (key and element pairs) from the input stream.voidstore(OutputStream os, String header) Writes this property list (key and element pairs) in thisPropertiestable to the output stream in a format suitable for loading into aPropertiestable using theloadmethod.Methods inherited from class Properties
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, getProperty, getProperty, hashCode, isEmpty, keys, keySet, list, list, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString, values
-
Constructor Details
-
XMLProperties
protected XMLProperties()
-
-
Method Details
-
load
Reads a property list (key and element pairs) from the input stream. The stream is assumed to be using the ISO 8859-1 character encoding.- Overrides:
loadin classProperties- Throws:
IOException
-
store
Writes this property list (key and element pairs) in thisPropertiestable to the output stream in a format suitable for loading into aPropertiestable using theloadmethod. The stream is written using the ISO 8859-1 character encoding.- Overrides:
storein classProperties- Throws:
IOException
-
enumerate
Enumerates all key/value pairs in the specified m.- Parameters:
m- the map
-