Examples of TMain


Examples of com.pugh.sockso.templates.web.TMain

   
    protected void showMain( final List<Track> recentlyPlayedTracks,
            final List<Artist> topArtists,
            final List<Album> recentlyPlayedAlbums ) throws IOException, SQLException {
       
        final TMain tpl = new TMain();

        tpl.setRecentTracks( recentlyPlayedTracks );
        tpl.setTopArtists( topArtists );
        tpl.setRecentAlbums( recentlyPlayedAlbums );

        getResponse().showHtml( tpl );

    }
View Full Code Here
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.