6465666768697071727374
* */ protected void showArtist( final Artist artist ) throws IOException { final TArtist tpl = new TArtist(); tpl.setArtist( artist ); getResponse().showJson( tpl.makeRenderer() ); }
53545556575859606162636465
* */ protected void showArtist( final Artist artist, final List<Album> albums ) throws IOException, SQLException { final TArtist tpl = new TArtist(); tpl.setArtist( artist ); tpl.setAlbums( albums ); getResponse().showHtml( tpl ); }