// Report the result using invokeLater().
SwingUtilities.invokeLater(new Runnable() {
public void run() {
MapFrame.This().infoPane.textPane.insertTextOut(result);
JOptionPane.showMessageDialog(prognosFrame, new AlertPanel(net), "Query Result: Summary", JOptionPane.INFORMATION_MESSAGE);
System.gc();
}
});
}