// -----------------------------------------------------------------------
// write all properties without process in separate xml file
// -----------------------------------------------------------------------
XStream xstream = new XStream();
xstream.setMode(XStream.NO_REFERENCES);
xstream.processAnnotations(FireburnDataImport.class);
xstream.processAnnotations(FireburnProperty.class);
OutputStreamWriter fw = new OutputStreamWriter(new FileOutputStream(new File(notfoundFilename)), "UTF8");
xstream.toXML(fdi.pNotFoundList, fw);
// DEBUG
long time2 = System.currentTimeMillis();