Package edu.gmu.seor.prognos.unbbayesplugin.cps.gui.unb.util

Examples of edu.gmu.seor.prognos.unbbayesplugin.cps.gui.unb.util.TextAreaDialog


    /* (non-Javadoc)
   * @see unbbayes.controller.INetworkMediator#showLog()
   */
    public JDialog showLog() {
      TextAreaDialog dialog = new TextAreaDialog(this.getScreen().getUnbbayesFrame(), false);
        dialog.setTextContent(this.getLog());
        return dialog;
    }
View Full Code Here


        //mostra o log da rede compilada
        log.addActionListener(new ActionListener() {
            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);
            }
        });

        //ao clicar no bot_o reset, chama-se o m_todo de inicia__o de cren_as da rede
        reset.addActionListener(new ActionListener() {
View Full Code Here

TOP

Related Classes of edu.gmu.seor.prognos.unbbayesplugin.cps.gui.unb.util.TextAreaDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.