Package com.jguice.quizzle.audio

Examples of com.jguice.quizzle.audio.AudioQuiz


  public static void setupQuiz() {
    File f = new File("/Users/josh/quiz.txt");
    quiz = null;
   
    try {
      quiz = new AudioQuiz(f);
      //quiz = new TextQuiz(f);
    } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
View Full Code Here


            return null;
    }

  private Quiz setupAudioQuiz(String quizName) throws IOException {
    File quizFile = new File(quizFolder + System.getProperty("file.separator") + quizName);
    Quiz quiz = new AudioQuiz(quizFile);
    return quiz;
  }
View Full Code Here

TOP

Related Classes of com.jguice.quizzle.audio.AudioQuiz

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.