Home | History | Annotate | Download | only in bookmark

Lines Matching refs:bookmark

20 package org.jivesoftware.smackx.bookmark;
110 BookmarkedConference bookmark
113 if(conferences.contains(bookmark)) {
114 BookmarkedConference oldConference = conferences.get(conferences.indexOf(bookmark));
116 throw new IllegalArgumentException("Cannot modify shared bookmark");
124 bookmarks.addBookmarkedConference(bookmark);
168 * @param URL the url of the bookmark
169 * @param name the name of the bookmark
176 BookmarkedURL bookmark = new BookmarkedURL(URL, name, isRSS);
178 if(urls.contains(bookmark)) {
179 BookmarkedURL oldURL = urls.get(urls.indexOf(bookmark));
187 bookmarks.addBookmarkedURL(bookmark);
195 * @param bookmarkURL the url of the bookmark to remove
203 BookmarkedURL bookmark = it.next();
204 if(bookmark.getURL().equalsIgnoreCase(bookmarkURL)) {
205 if(bookmark.isShared()) {
206 throw new IllegalArgumentException("Cannot delete a shared bookmark.");