changeset 40:af173212eb42

Changed Experiment.java to now list descriptions of MIDI files on request (not just names). Changed SubjectDataPanel.java to include "0%" option for familiarity.
author Carl Bussey <c.bussey@se10.qmul.ac.uk>
date Mon, 03 Jun 2013 18:33:31 +0100
parents 796b3e3e053f
children 75354c638975
files Experiment.java SubjectDataPanel.java
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Experiment.java	Fri May 31 17:40:59 2013 +0100
+++ b/Experiment.java	Mon Jun 03 18:33:31 2013 +0100
@@ -275,7 +275,7 @@
 	} else {
 	    for (int i=0; i<devices.length; i++) {
             MidiDevice.Info m = devices[i];
-            System.out.println(i+". MIDI device: " + m.getName());
+            System.out.println(i+". MIDI device: " + m.getName() + " - " + m.getDescription());
 	    }
 	}
     }
--- a/SubjectDataPanel.java	Fri May 31 17:40:59 2013 +0100
+++ b/SubjectDataPanel.java	Mon Jun 03 18:33:31 2013 +0100
@@ -186,7 +186,7 @@
         
         if(askFamiliarity){
             c.gridy = 16;
-            String[] goldMSI3_10o = {"", "25%", "50%", "75%", "100%"};
+            String[] goldMSI3_10o = {"", "0%", "25%", "50%", "75%", "100%"};
             goldMSI3_10 = new JComboBox(goldMSI3_10o);
             c.anchor = GridBagConstraints.EAST;
             questionsPanel.add(new JLabel("I was familiar with approximately ------- of the study songs."), c);