try
{
final SAXReader reader = new SAXReader();
final Document document = reader.read(file);
final Complex complex = Complex.fromXML(document);
complex.setName(FileUtils.getNameWithoutExt(file));
editor = new ComplexEditor(complex, file);
createLoadedComplexTab(editor);
}
catch (final DocumentException e)
{