Package com.googlecode.eckoit.events

Examples of com.googlecode.eckoit.events.RecordingCompleteEvent


                File wav = t.getFinishedFile();
                if (lastFile != null && lastFile.getFinishedFile().equals(wav)) {
                    try {
                        File[] results = mergeFiles(lastFile.getRecordingID());
                        EventBus.publish(new RecordingCompleteEvent(results));
                    } catch (FileNotFoundException ex) {
                        Logger.getLogger(SplitAudioRecorderManager.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (IOException ex) {
                        Logger.getLogger(SplitAudioRecorderManager.class.getName()).log(Level.SEVERE, null, ex);
                    }
View Full Code Here

TOP

Related Classes of com.googlecode.eckoit.events.RecordingCompleteEvent

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.