Package client.ws.milanas.gui.thread

Examples of client.ws.milanas.gui.thread.SearchBooksThread.startThread()


        SearchBooksThread sbt = new SearchBooksThread(this, controller);
        LoadingFrame lf = new LoadingFrame(messages);
        lfs.put(Long.valueOf(sbt.getId()), lf);
        lf.setVisible(true);
        sbts.put(Long.valueOf(sbt.getId()), sbt);
        sbt.startThread(author, title, keywords, condition, sort);
    }
   
    public void updateSearchBookTab(long threadId)
    {
        tabs.addTab(messages.getString("gui.tab.books.title"), new BooksResultsInternalFrame(messages.getString("gui.tab.books.title"), sbts.get(threadId).getItems(), tabs.getWidth(), this, tabs.getTabCount(), messages));
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.