public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
try {
if (FILE.equals(qName)) {
System.out.println(FILE);
fileScope = new FileScope();
fileScope.setStart(Integer.parseInt(attributes.getValue(LINE)));
fileScope.setEnd(Integer.parseInt(attributes.getValue(ENDLINE)));
activeNode = fileScope;
} else if (IMPORT.equals(qName)) {
System.out.println(IMPORT);