Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. //tutorial screen, explaining the main components of the quiz
  2. public void tutorial()
  3.  
  4. //panel to explain the scoring system
  5. public void tutorialScore()
  6.  
  7. //panel to explain the different types in the quiz
  8. public void tutorialType()
  9.  
  10. //panel to explain the level and their difficulty
  11. public void tutorialLevel()
  12.  
  13. //panel to explain how to answer
  14. public void tutorialAnswering()
  15.  
  16. //main quiz screen to allow user to select type and level
  17. public void quiz()
  18.  
  19. //panel to play multiple choice level 1
  20. public void MCLevel1()
  21.  
  22. //panel to play multiple choice level 2
  23. public void MCLevel2()
  24.  
  25. //panel to play fill in the blank level 1
  26. public void FIBLevel1()
  27.  
  28. //panel to play fill in the blank level 2
  29. public void FIBLevel2()
  30.  
  31. //panel to play fill in the blank level 3
  32. public void FIBLevel3()
  33.  
  34. //randomly opens a panel panel and type
  35. public void random()
  36.  
  37. //sets a JLabel to a positive or encouraging remark
  38. public void encourage(boolean result)
  39.  
  40. //set fonts and locations for certain JLabels
  41. public void setup()
  42.  
  43. //setup the score and questions at the start of a session
  44. public void setupScore()
  45.  
  46. //setup the JRadioButton
  47. public void setupButton()
  48.  
  49. //changes the questions and multiple choice options
  50. public void changeQuestionMC()
  51.  
  52. //changes the question for fill in the blank questions
  53. public void changeQuestionFIB()
  54.  
  55. //checks the userAnswer
  56. public void checkAnswer()
  57.  
  58. //checks which JRadioButton is selected and if it is correct and changes question
  59. public class submitMC implements ActionListener
  60.  
  61. //checks if userAnswer is correct and changes question
  62. public void submitFIB()
  63.  
  64. //calls methods and performs actions accordingly
  65. public class tutorial implements ActionListener
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement