Package client.ws.milanas.gui.thread

Examples of client.ws.milanas.gui.thread.SearchBooksThread


        }
    }
   
    public void startSearchBook(String author, String title, String keywords, String condition, String sort)
    {
        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);
    }
View Full Code Here

TOP

Related Classes of client.ws.milanas.gui.thread.SearchBooksThread

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.