Package com.salas.bb.search

Examples of com.salas.bb.search.ResultsList


         *
         * @param e event.
         */
        public void actionPerformed(ActionEvent e)
        {
            ResultsList list = (ResultsList)e.getSource();
            ResultItem o = list.getSelectedItem();
            if (!(o instanceof HotResultItem)) return;

            HotResultItem item = (HotResultItem)o;
            String link = item.getHotlink();
            IArticle article = item.getArticle();
View Full Code Here


        // Results model and list
        model = new ListModel(engine, mdlStarz, mdlOnlyUnread, mdlTimeOption);
        onSetupChange();

        itemsList = new ResultsList(model)
        {
            @Override
            protected ResultGroupPanel createGroupPanel(ResultGroup group)
            {
                return new ResultGroupPanel(group.getName(), group.getName(),
View Full Code Here

TOP

Related Classes of com.salas.bb.search.ResultsList

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.