Package com.jguice.quizzle.gui

Examples of com.jguice.quizzle.gui.QuizEditThread.start()


                quizName = quizBaseName + "." + quizExt;
                manager.setQuizData(quizName,"");
                quizList.setListData(manager.getQuizNames());

                QuizEditThread editThread = new QuizEditThread(quizName);
                editThread.start();
            }
        });

        deleteButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
View Full Code Here


                // TODO Change this to a password field
                String password = JOptionPane.showInputDialog(mainPane,"Enter Password","Protected Area",
                        JOptionPane.QUESTION_MESSAGE);
                if (password != null && password.equals("nocheating")) {
                    QuizEditThread editThread = new QuizEditThread();
                    editThread.start();
                }

            }
        });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.