IFXGNode node = scanner.getRootNode();
return node;
}
catch (IOException ex)
{
problems.add(new FXGParserProblem(documentPath, scanner.getStartLine(),
scanner.getStartColumn(), ex.getLocalizedMessage()));
}
catch (ParserConfigurationException ex)
{
problems.add(new FXGParserProblem(documentPath, scanner.getStartLine(),
scanner.getStartColumn(), ex.getLocalizedMessage()));
}
catch (SAXException ex)
{
problems.add(new FXGParserProblem(documentPath, scanner.getStartLine(),
scanner.getStartColumn(), ex.getLocalizedMessage()));
}
finally
{
try