Package com.salas.bb.domain

Examples of com.salas.bb.domain.IFeed.belongsTo()


            URL articleLink = article.getLink();
            if (articleLink != null && articleLink.getHost().equalsIgnoreCase(linkHost)) return false;
        }

        // Check guides
        return targetGuide == null || targetGuide.getID() == -1 || feed.belongsTo(targetGuide);
    }

    /**
     * Sets advanced filtering setup.
     *
 
View Full Code Here


        IFeed feed = controller.createDirectFeed(url, true);
        if (feed != null)
        {
            IGuide selectedGuide = controller.getModel().getSelectedGuide();
            if (!feed.belongsTo(selectedGuide))
            {
                IGuide[] guides = feed.getParentGuides();
                IGuide guide = guides.length > 0 ? guides[0] : null;
                if (guide != null) controller.selectGuide(guide, false);
            }
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.