Package edu.harvard.wcfia.yoshikoder.ui.dialog

Examples of edu.harvard.wcfia.yoshikoder.ui.dialog.MessageDialog


    public void actionPerformed(ActionEvent e) {
        dworker = new DialogWorker(yoshikoder){
            protected void doWork() throws Exception {
                String messages = FileUtil.slurp(logFile);
                dia = new MessageDialog(yoshikoder, "Console", messages);
            }
            protected void onError() {
                DialogUtil.yelp(yoshikoder, "Failed to launch logging console", e);
            }
        };
View Full Code Here


                        sb.append((char)ii);
                    }
                    license = sb.toString();
                    str.close();
                }
                dia = new MessageDialog(yoshikoder, "License", license);
            }
            protected void onError() {
                DialogUtil.yelp(yoshikoder, "Error: Could not show the Yoshikoder license", e);
            }
        };
View Full Code Here

TOP

Related Classes of edu.harvard.wcfia.yoshikoder.ui.dialog.MessageDialog

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.