Search in sources :

Example 1 with UnicodeWriter

use of org.fife.io.UnicodeWriter in project RSyntaxTextArea by bobbylight.

the class Theme method save.

/**
 * Saves this theme to an output stream.
 *
 * @param out The output stream to write to.
 * @throws IOException If an IO error occurs.
 * @see #load(InputStream)
 */
public void save(OutputStream out) throws IOException {
    try (BufferedOutputStream bout = new BufferedOutputStream(out)) {
        DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
        DOMImplementation impl = db.getDOMImplementation();
        Document doc = impl.createDocument(null, "RSyntaxTheme", null);
        Element root = doc.getDocumentElement();
        root.setAttribute("version", "1.0");
        Element elem = doc.createElement("baseFont");
        if (!baseFont.getFamily().equals(RSyntaxTextArea.getDefaultFont().getFamily())) {
            elem.setAttribute("family", baseFont.getFamily());
        }
        elem.setAttribute("size", Integer.toString(baseFont.getSize()));
        root.appendChild(elem);
        elem = doc.createElement("background");
        elem.setAttribute("color", colorToString(bgColor));
        root.appendChild(elem);
        elem = doc.createElement("caret");
        elem.setAttribute("color", colorToString(caretColor));
        root.appendChild(elem);
        elem = doc.createElement("selection");
        elem.setAttribute("useFG", Boolean.toString(useSelectionFG));
        elem.setAttribute("fg", colorToString(selectionFG));
        elem.setAttribute("bg", colorToString(selectionBG));
        elem.setAttribute("roundedEdges", Boolean.toString(selectionRoundedEdges));
        root.appendChild(elem);
        elem = doc.createElement("currentLineHighlight");
        elem.setAttribute("color", colorToString(currentLineHighlight));
        elem.setAttribute("fade", Boolean.toString(fadeCurrentLineHighlight));
        root.appendChild(elem);
        elem = doc.createElement("tabLine");
        elem.setAttribute("color", colorToString(tabLineColor));
        root.appendChild(elem);
        elem = doc.createElement("marginLine");
        elem.setAttribute("fg", colorToString(marginLineColor));
        root.appendChild(elem);
        elem = doc.createElement("markAllHighlight");
        elem.setAttribute("color", colorToString(markAllHighlightColor));
        root.appendChild(elem);
        elem = doc.createElement("markOccurrencesHighlight");
        elem.setAttribute("color", colorToString(markOccurrencesColor));
        elem.setAttribute("border", Boolean.toString(markOccurrencesBorder));
        root.appendChild(elem);
        elem = doc.createElement("matchedBracket");
        elem.setAttribute("fg", colorToString(matchedBracketFG));
        elem.setAttribute("bg", colorToString(matchedBracketBG));
        elem.setAttribute("highlightBoth", Boolean.toString(matchedBracketHighlightBoth));
        elem.setAttribute("animate", Boolean.toString(matchedBracketAnimate));
        root.appendChild(elem);
        elem = doc.createElement("hyperlinks");
        elem.setAttribute("fg", colorToString(hyperlinkFG));
        root.appendChild(elem);
        elem = doc.createElement("secondaryLanguages");
        for (int i = 0; i < secondaryLanguages.length; i++) {
            Color color = secondaryLanguages[i];
            Element elem2 = doc.createElement("language");
            elem2.setAttribute("index", Integer.toString(i + 1));
            elem2.setAttribute("bg", color == null ? "" : colorToString(color));
            elem.appendChild(elem2);
        }
        root.appendChild(elem);
        elem = doc.createElement("gutterBackground");
        elem.setAttribute("color", colorToString(gutterBackgroundColor));
        root.appendChild(elem);
        elem = doc.createElement("gutterBorder");
        elem.setAttribute("color", colorToString(gutterBorderColor));
        root.appendChild(elem);
        elem = doc.createElement("lineNumbers");
        elem.setAttribute("fg", colorToString(lineNumberColor));
        if (currentLineNumberColor != null) {
            elem.setAttribute("currentFG", colorToString(currentLineNumberColor));
        }
        if (lineNumberFont != null) {
            elem.setAttribute("fontFamily", lineNumberFont);
        }
        if (lineNumberFontSize > 0) {
            elem.setAttribute("fontSize", Integer.toString(lineNumberFontSize));
        }
        root.appendChild(elem);
        elem = doc.createElement("foldIndicator");
        elem.setAttribute("fg", colorToString(foldIndicatorFG));
        elem.setAttribute("iconBg", colorToString(foldBG));
        elem.setAttribute("iconArmedBg", colorToString(armedFoldBG));
        root.appendChild(elem);
        elem = doc.createElement("iconRowHeader");
        elem.setAttribute("activeLineRange", colorToString(activeLineRangeColor));
        elem.setAttribute("inheritsGutterBG", Boolean.toString(iconRowHeaderInheritsGutterBG));
        root.appendChild(elem);
        elem = doc.createElement("tokenStyles");
        Field[] fields = TokenTypes.class.getFields();
        for (Field field : fields) {
            // things like __$lineHits$__.  Yuck.
            if (field.getName().startsWith("__")) {
                continue;
            }
            int value = field.getInt(null);
            if (value != TokenTypes.DEFAULT_NUM_TOKEN_TYPES) {
                Style style = scheme.getStyle(value);
                if (style != null) {
                    Element elem2 = doc.createElement("style");
                    elem2.setAttribute("token", field.getName());
                    Color fg = style.foreground;
                    if (fg != null) {
                        elem2.setAttribute("fg", colorToString(fg));
                    }
                    Color bg = style.background;
                    if (bg != null) {
                        elem2.setAttribute("bg", colorToString(bg));
                    }
                    Font font = style.font;
                    if (font != null) {
                        if (!font.getFamily().equals(baseFont.getFamily())) {
                            elem2.setAttribute("fontFamily", font.getFamily());
                        }
                        if (font.getSize() != baseFont.getSize()) {
                            elem2.setAttribute("fontSize", Integer.toString(font.getSize()));
                        }
                        if (font.isBold()) {
                            elem2.setAttribute("bold", "true");
                        }
                        if (font.isItalic()) {
                            elem2.setAttribute("italic", "true");
                        }
                    }
                    if (style.underline) {
                        elem2.setAttribute("underline", "true");
                    }
                    elem.appendChild(elem2);
                }
            }
        }
        root.appendChild(elem);
        DOMSource source = new DOMSource(doc);
        // Use a writer instead of OutputStream to allow pretty printing.
        // See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6337981
        StreamResult result = new StreamResult(new PrintWriter(new UnicodeWriter(bout, "UTF-8")));
        TransformerFactory transFac = TransformerFactory.newInstance();
        Transformer transformer = transFac.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
        transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
        transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "theme.dtd");
        transformer.transform(source, result);
    } catch (RuntimeException re) {
        // FindBugs
        throw re;
    } catch (Exception e) {
        throw new IOException("Error generating XML: " + e.getMessage(), e);
    }
}
Also used : DOMSource(javax.xml.transform.dom.DOMSource) TransformerFactory(javax.xml.transform.TransformerFactory) Transformer(javax.xml.transform.Transformer) StreamResult(javax.xml.transform.stream.StreamResult) Element(org.w3c.dom.Element) Color(java.awt.Color) SystemColor(java.awt.SystemColor) DOMImplementation(org.w3c.dom.DOMImplementation) IOException(java.io.IOException) Document(org.w3c.dom.Document) Font(java.awt.Font) IOException(java.io.IOException) SAXParseException(org.xml.sax.SAXParseException) SAXException(org.xml.sax.SAXException) Field(java.lang.reflect.Field) DocumentBuilder(javax.xml.parsers.DocumentBuilder) BufferedOutputStream(java.io.BufferedOutputStream) UnicodeWriter(org.fife.io.UnicodeWriter) PrintWriter(java.io.PrintWriter)

Example 2 with UnicodeWriter

use of org.fife.io.UnicodeWriter in project omegaide by omegaui.

the class Theme method save.

/**
 * Saves this theme to an output stream.
 *
 * @param out The output stream to write to.
 * @throws IOException If an IO error occurs.
 * @see #load(InputStream)
 */
public void save(OutputStream out) throws IOException {
    try (BufferedOutputStream bout = new BufferedOutputStream(out)) {
        DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
        DOMImplementation impl = db.getDOMImplementation();
        Document doc = impl.createDocument(null, "RSyntaxTheme", null);
        Element root = doc.getDocumentElement();
        root.setAttribute("version", "1.0");
        Element elem = doc.createElement("baseFont");
        if (!baseFont.getFamily().equals(RSyntaxTextArea.getDefaultFont().getFamily())) {
            elem.setAttribute("family", baseFont.getFamily());
        }
        elem.setAttribute("size", Integer.toString(baseFont.getSize()));
        root.appendChild(elem);
        elem = doc.createElement("background");
        elem.setAttribute("color", colorToString(bgColor));
        root.appendChild(elem);
        elem = doc.createElement("caret");
        elem.setAttribute("color", colorToString(caretColor));
        root.appendChild(elem);
        elem = doc.createElement("selection");
        elem.setAttribute("useFG", Boolean.toString(useSelectionFG));
        elem.setAttribute("fg", colorToString(selectionFG));
        elem.setAttribute("bg", colorToString(selectionBG));
        elem.setAttribute("roundedEdges", Boolean.toString(selectionRoundedEdges));
        root.appendChild(elem);
        elem = doc.createElement("currentLineHighlight");
        elem.setAttribute("color", colorToString(currentLineHighlight));
        elem.setAttribute("fade", Boolean.toString(fadeCurrentLineHighlight));
        root.appendChild(elem);
        elem = doc.createElement("tabLine");
        elem.setAttribute("color", colorToString(tabLineColor));
        root.appendChild(elem);
        elem = doc.createElement("marginLine");
        elem.setAttribute("fg", colorToString(marginLineColor));
        root.appendChild(elem);
        elem = doc.createElement("markAllHighlight");
        elem.setAttribute("color", colorToString(markAllHighlightColor));
        root.appendChild(elem);
        elem = doc.createElement("markOccurrencesHighlight");
        elem.setAttribute("color", colorToString(markOccurrencesColor));
        elem.setAttribute("border", Boolean.toString(markOccurrencesBorder));
        root.appendChild(elem);
        elem = doc.createElement("matchedBracket");
        elem.setAttribute("fg", colorToString(matchedBracketFG));
        elem.setAttribute("bg", colorToString(matchedBracketBG));
        elem.setAttribute("highlightBoth", Boolean.toString(matchedBracketHighlightBoth));
        elem.setAttribute("animate", Boolean.toString(matchedBracketAnimate));
        root.appendChild(elem);
        elem = doc.createElement("hyperlinks");
        elem.setAttribute("fg", colorToString(hyperlinkFG));
        root.appendChild(elem);
        elem = doc.createElement("secondaryLanguages");
        for (int i = 0; i < secondaryLanguages.length; i++) {
            Color color = secondaryLanguages[i];
            Element elem2 = doc.createElement("language");
            elem2.setAttribute("index", Integer.toString(i + 1));
            elem2.setAttribute("bg", color == null ? "" : colorToString(color));
            elem.appendChild(elem2);
        }
        root.appendChild(elem);
        elem = doc.createElement("gutterBackground");
        elem.setAttribute("color", colorToString(gutterBackgroundColor));
        root.appendChild(elem);
        elem = doc.createElement("gutterBorder");
        elem.setAttribute("color", colorToString(gutterBorderColor));
        root.appendChild(elem);
        elem = doc.createElement("lineNumbers");
        elem.setAttribute("fg", colorToString(lineNumberColor));
        if (lineNumberFont != null) {
            elem.setAttribute("fontFamily", lineNumberFont);
        }
        if (lineNumberFontSize > 0) {
            elem.setAttribute("fontSize", Integer.toString(lineNumberFontSize));
        }
        root.appendChild(elem);
        elem = doc.createElement("foldIndicator");
        elem.setAttribute("fg", colorToString(foldIndicatorFG));
        elem.setAttribute("iconBg", colorToString(foldBG));
        elem.setAttribute("iconArmedBg", colorToString(armedFoldBG));
        root.appendChild(elem);
        elem = doc.createElement("iconRowHeader");
        elem.setAttribute("activeLineRange", colorToString(activeLineRangeColor));
        elem.setAttribute("inheritsGutterBG", Boolean.toString(iconRowHeaderInheritsGutterBG));
        root.appendChild(elem);
        elem = doc.createElement("tokenStyles");
        Field[] fields = TokenTypes.class.getFields();
        for (Field field : fields) {
            int value = field.getInt(null);
            if (value != TokenTypes.DEFAULT_NUM_TOKEN_TYPES) {
                Style style = scheme.getStyle(value);
                if (style != null) {
                    Element elem2 = doc.createElement("style");
                    elem2.setAttribute("token", field.getName());
                    Color fg = style.foreground;
                    if (fg != null) {
                        elem2.setAttribute("fg", colorToString(fg));
                    }
                    Color bg = style.background;
                    if (bg != null) {
                        elem2.setAttribute("bg", colorToString(bg));
                    }
                    Font font = style.font;
                    if (font != null) {
                        if (!font.getFamily().equals(baseFont.getFamily())) {
                            elem2.setAttribute("fontFamily", font.getFamily());
                        }
                        if (font.getSize() != baseFont.getSize()) {
                            elem2.setAttribute("fontSize", Integer.toString(font.getSize()));
                        }
                        if (font.isBold()) {
                            elem2.setAttribute("bold", "true");
                        }
                        if (font.isItalic()) {
                            elem2.setAttribute("italic", "true");
                        }
                    }
                    if (style.underline) {
                        elem2.setAttribute("underline", "true");
                    }
                    elem.appendChild(elem2);
                }
            }
        }
        root.appendChild(elem);
        DOMSource source = new DOMSource(doc);
        // Use a writer instead of OutputStream to allow pretty printing.
        // See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6337981
        StreamResult result = new StreamResult(new PrintWriter(new UnicodeWriter(bout, "UTF-8")));
        TransformerFactory transFac = TransformerFactory.newInstance();
        Transformer transformer = transFac.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
        transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
        transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "theme.dtd");
        transformer.transform(source, result);
    } catch (RuntimeException re) {
        // FindBugs
        throw re;
    } catch (Exception e) {
        throw new IOException("Error generating XML: " + e.getMessage(), e);
    }
}
Also used : DOMSource(javax.xml.transform.dom.DOMSource) TransformerFactory(javax.xml.transform.TransformerFactory) Transformer(javax.xml.transform.Transformer) StreamResult(javax.xml.transform.stream.StreamResult) Element(org.w3c.dom.Element) Color(java.awt.Color) SystemColor(java.awt.SystemColor) DOMImplementation(org.w3c.dom.DOMImplementation) IOException(java.io.IOException) Document(org.w3c.dom.Document) Font(java.awt.Font) IOException(java.io.IOException) SAXParseException(org.xml.sax.SAXParseException) SAXException(org.xml.sax.SAXException) Field(java.lang.reflect.Field) DocumentBuilder(javax.xml.parsers.DocumentBuilder) BufferedOutputStream(java.io.BufferedOutputStream) UnicodeWriter(org.fife.io.UnicodeWriter) PrintWriter(java.io.PrintWriter)

Example 3 with UnicodeWriter

use of org.fife.io.UnicodeWriter in project SpringRemote by HaleyWang.

the class Theme method save.

/**
 * Saves this theme to an output stream.
 *
 * @param out The output stream to write to.
 * @throws IOException If an IO error occurs.
 * @see #load(InputStream)
 */
public void save(OutputStream out) throws IOException {
    try (BufferedOutputStream bout = new BufferedOutputStream(out)) {
        DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
        DOMImplementation impl = db.getDOMImplementation();
        Document doc = impl.createDocument(null, "RSyntaxTheme", null);
        Element root = doc.getDocumentElement();
        root.setAttribute("version", "1.0");
        Element elem = doc.createElement("baseFont");
        if (!baseFont.getFamily().equals(RSyntaxTextArea.getDefaultFont().getFamily())) {
            elem.setAttribute("family", baseFont.getFamily());
        }
        elem.setAttribute("size", Integer.toString(baseFont.getSize()));
        root.appendChild(elem);
        elem = doc.createElement("background");
        elem.setAttribute("color", colorToString(bgColor));
        root.appendChild(elem);
        elem = doc.createElement("caret");
        elem.setAttribute("color", colorToString(caretColor));
        root.appendChild(elem);
        elem = doc.createElement("selection");
        elem.setAttribute("useFG", Boolean.toString(useSelctionFG));
        elem.setAttribute("fg", colorToString(selectionFG));
        elem.setAttribute("bg", colorToString(selectionBG));
        elem.setAttribute("roundedEdges", Boolean.toString(selectionRoundedEdges));
        root.appendChild(elem);
        elem = doc.createElement("currentLineHighlight");
        elem.setAttribute("color", colorToString(currentLineHighlight));
        elem.setAttribute("fade", Boolean.toString(fadeCurrentLineHighlight));
        root.appendChild(elem);
        elem = doc.createElement("marginLine");
        elem.setAttribute("fg", colorToString(marginLineColor));
        root.appendChild(elem);
        elem = doc.createElement("markAllHighlight");
        elem.setAttribute("color", colorToString(markAllHighlightColor));
        root.appendChild(elem);
        elem = doc.createElement("markOccurrencesHighlight");
        elem.setAttribute("color", colorToString(markOccurrencesColor));
        elem.setAttribute("border", Boolean.toString(markOccurrencesBorder));
        root.appendChild(elem);
        elem = doc.createElement("matchedBracket");
        elem.setAttribute("fg", colorToString(matchedBracketFG));
        elem.setAttribute("bg", colorToString(matchedBracketBG));
        elem.setAttribute("highlightBoth", Boolean.toString(matchedBracketHighlightBoth));
        elem.setAttribute("animate", Boolean.toString(matchedBracketAnimate));
        root.appendChild(elem);
        elem = doc.createElement("hyperlinks");
        elem.setAttribute("fg", colorToString(hyperlinkFG));
        root.appendChild(elem);
        elem = doc.createElement("secondaryLanguages");
        for (int i = 0; i < secondaryLanguages.length; i++) {
            Color color = secondaryLanguages[i];
            Element elem2 = doc.createElement("language");
            elem2.setAttribute("index", Integer.toString(i + 1));
            elem2.setAttribute("bg", color == null ? "" : colorToString(color));
            elem.appendChild(elem2);
        }
        root.appendChild(elem);
        elem = doc.createElement("gutterBackground");
        elem.setAttribute("color", colorToString(gutterBackgroundColor));
        root.appendChild(elem);
        elem = doc.createElement("gutterBorder");
        elem.setAttribute("color", colorToString(gutterBorderColor));
        root.appendChild(elem);
        elem = doc.createElement("lineNumbers");
        elem.setAttribute("fg", colorToString(lineNumberColor));
        if (lineNumberFont != null) {
            elem.setAttribute("fontFamily", lineNumberFont);
        }
        if (lineNumberFontSize > 0) {
            elem.setAttribute("fontSize", Integer.toString(lineNumberFontSize));
        }
        root.appendChild(elem);
        elem = doc.createElement("foldIndicator");
        elem.setAttribute("fg", colorToString(foldIndicatorFG));
        elem.setAttribute("iconBg", colorToString(foldBG));
        elem.setAttribute("iconArmedBg", colorToString(armedFoldBG));
        root.appendChild(elem);
        elem = doc.createElement("iconRowHeader");
        elem.setAttribute("activeLineRange", colorToString(activeLineRangeColor));
        elem.setAttribute("inheritsGutterBG", Boolean.toString(iconRowHeaderInheritsGutterBG));
        root.appendChild(elem);
        elem = doc.createElement("tokenStyles");
        Field[] fields = TokenTypes.class.getFields();
        for (Field field : fields) {
            int value = field.getInt(null);
            if (value != TokenTypes.DEFAULT_NUM_TOKEN_TYPES) {
                Style style = scheme.getStyle(value);
                if (style != null) {
                    Element elem2 = doc.createElement("style");
                    elem2.setAttribute("token", field.getName());
                    Color fg = style.foreground;
                    if (fg != null) {
                        elem2.setAttribute("fg", colorToString(fg));
                    }
                    Color bg = style.background;
                    if (bg != null) {
                        elem2.setAttribute("bg", colorToString(bg));
                    }
                    Font font = style.font;
                    if (font != null) {
                        if (!font.getFamily().equals(baseFont.getFamily())) {
                            elem2.setAttribute("fontFamily", font.getFamily());
                        }
                        if (font.getSize() != baseFont.getSize()) {
                            elem2.setAttribute("fontSize", Integer.toString(font.getSize()));
                        }
                        if (font.isBold()) {
                            elem2.setAttribute("bold", "true");
                        }
                        if (font.isItalic()) {
                            elem2.setAttribute("italic", "true");
                        }
                    }
                    if (style.underline) {
                        elem2.setAttribute("underline", "true");
                    }
                    elem.appendChild(elem2);
                }
            }
        }
        root.appendChild(elem);
        DOMSource source = new DOMSource(doc);
        // Use a writer instead of OutputStream to allow pretty printing.
        // See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6337981
        StreamResult result = new StreamResult(new PrintWriter(new UnicodeWriter(bout, "UTF-8")));
        TransformerFactory transFac = TransformerFactory.newInstance();
        Transformer transformer = transFac.newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
        transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
        transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "theme.dtd");
        transformer.transform(source, result);
    } catch (RuntimeException re) {
        // FindBugs
        throw re;
    } catch (Exception e) {
        throw new IOException("Error generating XML: " + e.getMessage(), e);
    }
}
Also used : DOMSource(javax.xml.transform.dom.DOMSource) TransformerFactory(javax.xml.transform.TransformerFactory) Transformer(javax.xml.transform.Transformer) StreamResult(javax.xml.transform.stream.StreamResult) Element(org.w3c.dom.Element) Color(java.awt.Color) SystemColor(java.awt.SystemColor) DOMImplementation(org.w3c.dom.DOMImplementation) IOException(java.io.IOException) Document(org.w3c.dom.Document) Font(java.awt.Font) IOException(java.io.IOException) SAXParseException(org.xml.sax.SAXParseException) SAXException(org.xml.sax.SAXException) Field(java.lang.reflect.Field) DocumentBuilder(javax.xml.parsers.DocumentBuilder) BufferedOutputStream(java.io.BufferedOutputStream) UnicodeWriter(org.fife.io.UnicodeWriter) PrintWriter(java.io.PrintWriter)

Example 4 with UnicodeWriter

use of org.fife.io.UnicodeWriter in project SpringRemote by HaleyWang.

the class TextEditorPane method saveImpl.

/**
 * Saves the text in this editor to the specified location.
 *
 * @param loc The location to save to.
 * @throws IOException If an IO error occurs.
 */
private void saveImpl(FileLocation loc) throws IOException {
    OutputStream out = loc.getOutputStream();
    BufferedWriter w = new BufferedWriter(new UnicodeWriter(out, getEncoding()));
    try {
        write(w);
    } finally {
        w.close();
    }
}
Also used : OutputStream(java.io.OutputStream) UnicodeWriter(org.fife.io.UnicodeWriter) BufferedWriter(java.io.BufferedWriter)

Aggregations

UnicodeWriter (org.fife.io.UnicodeWriter)4 Color (java.awt.Color)3 Font (java.awt.Font)3 SystemColor (java.awt.SystemColor)3 BufferedOutputStream (java.io.BufferedOutputStream)3 IOException (java.io.IOException)3 PrintWriter (java.io.PrintWriter)3 Field (java.lang.reflect.Field)3 DocumentBuilder (javax.xml.parsers.DocumentBuilder)3 Transformer (javax.xml.transform.Transformer)3 TransformerFactory (javax.xml.transform.TransformerFactory)3 DOMSource (javax.xml.transform.dom.DOMSource)3 StreamResult (javax.xml.transform.stream.StreamResult)3 DOMImplementation (org.w3c.dom.DOMImplementation)3 Document (org.w3c.dom.Document)3 Element (org.w3c.dom.Element)3 SAXException (org.xml.sax.SAXException)3 SAXParseException (org.xml.sax.SAXParseException)3 BufferedWriter (java.io.BufferedWriter)1 OutputStream (java.io.OutputStream)1