Package com.salas.bb.core

Examples of com.salas.bb.core.GuidesListModel


        final IGuide currentGuide)
    {
        IGuide guide = currentGuide;
        boolean found = false;

        GuidesListModel glm = GlobalController.SINGLETON.getGuidesListModel();

        while (!found)
        {
            guide = nextGuide(cgs, guide);
            found = guide == currentGuide || (!guide.isRead() && glm.indexOf(guide) != -1);
        }

        return currentGuide == guide ? null : guide;
    }
View Full Code Here

TOP

Related Classes of com.salas.bb.core.GuidesListModel

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.