comparison ExperimentGui.java @ 4:5080b65e6963

Close MIDI sequencer and synthesizer properly and allow user to pass MIDI file directory as a command line argument Ignore-this: dbf86cc9008fba00379b67dd541adb38
author Marcus Pearce <m.pearce@gold.ac.uk>
date Thu, 18 Nov 2010 11:47:32 +0000
parents 6108a8aa9d82
children 3dd7636ca811
comparison
equal deleted inserted replaced
3:6108a8aa9d82 4:5080b65e6963
1 /*============================================================================= 1 /*=============================================================================
2 * File: ExperimentGui.java 2 * File: ExperimentGui.java
3 * Author: Marcus Pearce <m.pearce@gold.ac.uk> 3 * Author: Marcus Pearce <m.pearce@gold.ac.uk>
4 * Created: <2007-02-14 16:42:31 marcusp> 4 * Created: <2007-02-14 16:42:31 marcusp>
5 * Time-stamp: <2010-06-21 16:50:53 marcusp> 5 * Time-stamp: <2010-11-18 11:46:46 marcusp>
6 *============================================================================= 6 *=============================================================================
7 */ 7 */
8 8
9 import java.awt.*; 9 import java.awt.*;
10 import javax.swing.*; 10 import javax.swing.*;
103 } 103 }
104 } 104 }
105 105
106 /* Show the Fixation Point */ 106 /* Show the Fixation Point */
107 public void showFixationPoint() { 107 public void showFixationPoint() {
108 //System.out.println("showFixationPoint");
108 clock.showClock = false; 109 clock.showClock = false;
109 clock.showFullClock = false; 110 clock.showFullClock = false;
110 clock.repaint(); 111 clock.repaint();
111 } 112 }
112 113