4546474849505152535455
* */ protected void showAlbum( final Album album ) throws IOException { TAlbum tpl = new TAlbum(); tpl.setAlbum( album ); getResponse().showJson( tpl.makeRenderer() ); }
58596061626364656667686970
* */ protected void showAlbum( final Album album, final List<Track> tracks ) throws IOException, SQLException { final TAlbum tpl = new TAlbum(); tpl.setAlbum( album ); tpl.setTracks( tracks ); getResponse().showHtml( tpl ); }