Package com.groovesquid.model

Examples of com.groovesquid.model.Song


    }

    private void skipToPrevious() {
        if (currentSongIndex > 0) {
            currentSongIndex--;
            Song currentSong = getCurrentSong();
            log.info("skipping back to: " + currentSong);
            startPlaying(currentSong, 0, 0);
        } else {
            log.info("skipped beyond start of playlist");
        }
View Full Code Here

TOP

Related Classes of com.groovesquid.model.Song

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.