In-Line XML Editor: Difference between revisions
Jump to navigation
Jump to search
Line 27: | Line 27: | ||
} | } | ||
</pre> | </pre> | ||
The modification preserves the original format, nothing is modified except the value that is being changed. |
Revision as of 04:47, 11 November 2016
Internal
Overview
MutableXMLDocument is an API that applies in-line configuration modifications in XML files.
A typical usage pattern is the following:
File file = ...; MutableXMLDocument d = new MutableXMLDocument(file); boolean changeOccurred = d.set("/path/in/document", "value"); if (changeOccurred) { d.write(); } else { // // the value we're trying to set is identical with the value present in the file, react accordingly // }
The modification preserves the original format, nothing is modified except the value that is being changed.