Package org.jsurveylib.gui.swing

Examples of org.jsurveylib.gui.swing.SurveyPanel


        super("Survey Testbench");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        try {
            ClientSurvey survey = new Survey(xmlConfigFile);
            SurveyPanel surveyPanel = new SurveyPanel(survey);
            survey.addSurveyListener(this);
            if (xmlConfigFile.contains("surveyLoadAnswers.xml")) {
                survey.loadXMLAnswers(new InputStreamReader(new FileInputStream("resultLoadAnswers.xml"), "UTF-8"));
            }
            setLayout(new BorderLayout());
View Full Code Here

TOP

Related Classes of org.jsurveylib.gui.swing.SurveyPanel

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.