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

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

/*
* Xspfer.java
*
* Created on Jun 19, 2007, 12:56:18 AM
*
* Generates playlists in the XSPF format
*
*/

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

import com.pugh.sockso.templates.TXspf;

public class Xspfer extends Playlister {

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

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

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

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.