In-Line XML Editor
Jump to navigation
Jump to search
Internal
Overview
InLineXMLEditor is an API that applies in-line configuration modifications in XML files.
A typical usage pattern is the following:
File file = ...; InLineXMLEditor editor = new InLineXMLEditor(file); boolean changeOccurred = editor.set("/path/in/document", "value"); if (changeOccurred) { editor.save(); } 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.