public class ConfigChangeList extends Object implements Serializable, SortedMap
List of configuration changes. A user interface feature allows users to
apply changes after one or more edits to configuration attributes. This
class keeps track of configuration changes.
Fields Summary
private Vector
names
private Vector
values
private HashMap
nameMap
Constructors Summary
public ConfigChangeList()
Create an empty ConfigChangeList.
names = new Vector();
values = new Vector();
nameMap = new HashMap();
Add a config change to list. If a config change for the same property
already exists, then the specified change value is added to the end of
the list of changes. The name is the XPath of the attribute for which
change is being addeed.