@Override
protected String convert(IFile outFile, IFile file) throws ExecutionException {
try {
FXGLoader loader = new FXGLoader();
Graphic g = loader.loadGraphic(file.getContents());
return new FXMLConverter().generate(g).toString();
} catch (CoreException e) {
throw new ExecutionException("Conversion failed", e);
}
}