[ 
https://issues.apache.org/jira/browse/DERBY-3375?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12569575#action_12569575
 ] 

Knut Anders Hatlen commented on DERBY-3375:
-------------------------------------------

> how do I write the resulting tree back to a new file?

Could you use javax.xml.transform.Transformer? This writes an empty XML 
document to System.out:

        Transformer t = TransformerFactory.newInstance().newTransformer();
        t.transform(new DOMSource(), new StreamResult(System.out));

I think you can pass Document objects to DOMSource's constructor.

> Localize new error messages added in 10.3
> -----------------------------------------
>
>                 Key: DERBY-3375
>                 URL: https://issues.apache.org/jira/browse/DERBY-3375
>             Project: Derby
>          Issue Type: Improvement
>          Components: Localization
>    Affects Versions: 10.3.2.1
>            Reporter: Dyre Tjeldvoll
>            Priority: Minor
>             Fix For: 10.4.0.0
>
>         Attachments: CheckMessages.java, checkMessages.sql, derby-3375.diff, 
> drda_messages.zip, engine_messages.zip
>
>
> New error messages added in 10.3 have not been localized. Should translate 
> these into as many languages as possible.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to