Package view.customs

Examples of view.customs.ScrollByClickOnHeaderTable


    Artist[][] art = new Artist[length+1][length+1];
    art[0][0] = new Artist(0, "Alle ("+length+")");   //<-- Die 0 als ID signalisiert, dass Alle angezeigt werden sollen
    for (int i = 1; i <= length; i++) {
      art[i][0] = lib.getArtists()[i-1];// i-1 weil alle noch oben drüber steht und i bei eins beginnt.
    }
    artists = new ScrollByClickOnHeaderTable(art, new String[]{"Interpreten"}, ml);
   
    //übertragen der Albums in table-gerechtes array
    length=lib.getAlbums().length;
    Album[][] alb = new Album[length+1][length+1];
    alb[0][0] = new Album(0, "Alle ("+length+")");    //<-- Die 0 als ID signalisiert, dass Alle angezeigt werden sollen
    for (int i = 1; i <= length; i++) {
      alb[i][0] = lib.getAlbums()[i-1];// i-1 weil alle noch oben drüber steht und i bei eins beginnt.
    }
    albums = new ScrollByClickOnHeaderTable(alb, new String[]{"Alben"}, ml);
   
   
    artists.setFillsViewportHeight(true);
    albums.setFillsViewportHeight(true);
    TableSupport.setQuickSearch(albums,1);
View Full Code Here

TOP

Related Classes of view.customs.ScrollByClickOnHeaderTable

Copyright © 2018 www.massapicom. 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.