Java Code Examples for org.chromium.components.bookmarks.BookmarkType#NORMAL
The following examples show how to use
org.chromium.components.bookmarks.BookmarkType#NORMAL .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BookmarkBridge.java From delion with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark's URL can be edited */ public boolean isUrlEditable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }
Example 2
Source File: BookmarkBridge.java From delion with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark can be moved */ public boolean isMovable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }
Example 3
Source File: BookmarkBridge.java From AndroidChromium with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark's URL can be edited */ public boolean isUrlEditable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }
Example 4
Source File: BookmarkBridge.java From AndroidChromium with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark can be moved */ public boolean isMovable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }
Example 5
Source File: BookmarkBridge.java From 365browser with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark's URL can be edited */ public boolean isUrlEditable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }
Example 6
Source File: BookmarkBridge.java From 365browser with Apache License 2.0 | 4 votes |
/**@return Whether this bookmark can be moved */ public boolean isMovable() { return isEditable() && mId.getType() == BookmarkType.NORMAL; }