Gml gml = GmlParsingHelper.getGml(fileName, normalize);
if (null != gml && null !=callback) {
try {
// Call the method with this object as the argument!
LOGGER.log(Level.FINEST, "Invoking callback");
callback.invoke(parent, new GmlParsingEvent(gml) );
}
catch (Exception e) {
//LOGGER.debug("Couldn't invoke the callback method for some reason. "+e.getMessage());
}
}