Package com.salas.bb.search

Examples of com.salas.bb.search.ResultItem


         * @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


        @Override
        public boolean eval(Object o)
        {
            if (!(o instanceof ResultItem)) return false;
            ResultItem i = (ResultItem)o;

            return i.getObject() == article;
        }
View Full Code Here

TOP

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

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.