java.lang.Object | |
↳ | com.pnfsoftware.jeb.core.BookmarkManager |
Bookmark manager used by JEB projects.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
class | BookmarkManager.Bookmark | Definition of a bookmark. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
BookmarkManager() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String |
get(IUnit unit, String address)
Retrieve a bookmark.
| ||||||||||
Collection<BookmarkManager.Bookmark> | get(IUnit unit) | ||||||||||
List<BookmarkManager.Bookmark> | getAll() | ||||||||||
void | onEvent(IEvent e) | ||||||||||
boolean | remove(IUnit unit, String address) | ||||||||||
boolean | remove(IUnit unit) | ||||||||||
void |
set(IUnit unit, String address, String description, boolean doNotGenerateMetaComments)
Add or update a bookmark.
| ||||||||||
void |
set(IUnit unit, String address, String description)
Add or update a bookmark.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.pnfsoftware.jeb.util.events.IEventListener
|
Add or update a bookmark.
unit | mandatory |
---|---|
address | an address, as defined in IAddressableUnit ; null is accepted as well
to bookmark the unit as a whole, whether it be addressable or not |
description | non-null description |
doNotGenerateMetaComments | if true, no associated meta-comment with the flag
COMMENT_FLAG_FAVORITE will be generated
|
Add or update a bookmark. A meta-comment is auto-generated.
unit | mandatory |
---|---|
address | an address, as defined in IAddressableUnit ; null is accepted as well
to bookmark the unit as a whole, whether it be addressable or not |
description | non-null description |