Package com.pugh.sockso.web.action.playlist

Source Code of com.pugh.sockso.web.action.playlist.Plser

/*
* Plser.java
*
* Created on Jul 13, 2007, 9:32:48 AM
*
* Creates a playlist in the PLS format
*
*/

package com.pugh.sockso.web.action.playlist;

import com.pugh.sockso.templates.TPls;

public class Plser extends Playlister {

    public void init( final String protocol ) {
        super.init( protocol, "pls" );
    }

    @Override
    public PlaylistTemplate getPlaylistTemplate() {
        return new TPls();
    }

}
TOP

Related Classes of com.pugh.sockso.web.action.playlist.Plser

TOP
Copyright © 2018 www.massapi.com. 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.