Examples of wasDeleted()


Examples of com.salas.bb.core.DeletedObjectsRepository.wasDeleted()

                // There's no guide with such name locally -- add feeds that weren't removed
                for (int j = 0; j < remoteGuide.getFeedsCount(); j++)
                {
                    IFeed feed = remoteGuide.getFeedAt(j);
                    if (remoteGuide.hasDirectLinkWith(feed) &&
                        (copyServiceLayout || !dfr.wasDeleted(remoteGuideTitle, feed.getMatchKey())))
                            changes.addFeed(feed);
                }

                // Reading lists
                ReadingList[] readingLists = remoteGuide.getReadingLists();
View Full Code Here

Examples of com.salas.bb.core.DeletedObjectsRepository.wasDeleted()

                // Reading lists
                ReadingList[] readingLists = remoteGuide.getReadingLists();
                for (ReadingList rl : readingLists)
                {
                    if (copyServiceLayout || !dfr.wasDeleted(remoteGuideTitle, rl.getURL().toString()))
                        changes.addReadingList(rl);
                }
            } else
            {
                if (localGuide.getLastUpdateTime() < remoteGuide.getLastUpdateTime())
View Full Code Here

Examples of com.salas.bb.core.DeletedObjectsRepository.wasDeleted()

            if (!aLocalGuide.hasDirectLinkWith(localFeed)) localFeed = null;

            // A feed has been added remotely
            if (localFeed == null)
            {
                if (aClearNew || !dfr.wasDeleted(aLocalGuide.getTitle(), remoteFeed.getMatchKey()))
                {
                    aChanges.addFeed(remoteFeed);
                }
            } else
            {
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.