public void actionPerformed(ActionEvent ae) {
//by young2
netWindow.getGraphPane().compiled(false, null);
TextAreaDialog jd = new TextAreaDialog(netWindow.getUnbbayesFrame(), false);
jd.setTextContent(controller.getLog());
jd.pack();
jd.setLocationRelativeTo(PNCompilationPane.this);
// jd.setAlwaysOnTop(true);
jd.setVisible(true);
}
});