voxforge.org
VoxForge Dev
Show
Ignore:
Timestamp:
10/04/07 13:41:18 (1 year ago)
Author:
kmaclean
Message:

renaming MoodleSpeex? Java apps to SpeechRecorder?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/SpeechSubmission/VFSpeechSubmission/java/src/speechrecorder/PlayerApplet.java

    r2315 r2317  
    1313 * @author  kmaclean 
    1414 */ 
    15 public class MoodleSpeexPlayerApplet extends JApplet { 
     15public class PlayerApplet extends JApplet { 
    1616 
    1717    private Downloader dl; 
     
    298298    */ 
    299299    private void reportError(final String str, final Exception err){ 
    300         System.err.println("MoodleSpeexPlayerApplet important error: " + str); 
     300        System.err.println("PlayerApplet important error: " + str); 
    301301        err.printStackTrace(); 
    302302        JButton errButt = new JButton("Error"); 
    303303        errButt.addActionListener(new ActionListener(){ 
    304304                       public void actionPerformed(ActionEvent e){ 
    305                          JOptionPane.showMessageDialog(null, str + "\n\n" + err, "Moodlespeex error", JOptionPane.ERROR_MESSAGE); 
     305                         JOptionPane.showMessageDialog(null, str + "\n\n" + err, "PlayerApplet error", JOptionPane.ERROR_MESSAGE); 
    306306                       } 
    307307                       });