6364656667686970717273
* */ protected void showTracks( final List<Track> tracks ) throws IOException { TTracks tpl = new TTracks(); tpl.setTracks( tracks ); getResponse().showJson( tpl.makeRenderer() ); }
3940414243444546474849
6162636465666768697071
* */ protected void showTracks( final List<Track> tracks ) throws IOException { final TTracks tpl = new TTracks(); tpl.setTracks( tracks ); getResponse().showJson( tpl.makeRenderer() ); }
121122123124125126127128129130131132