Package ghidra.program.database.bookmark
Class BookmarkTypeDB
- java.lang.Object
-
- ghidra.program.database.bookmark.BookmarkTypeDB
-
- All Implemented Interfaces:
BookmarkType
public class BookmarkTypeDB extends java.lang.Object implements BookmarkType
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.ImageIcongetIcon()Returns Icon associated with this type or null if one has not been set by a plugin.java.awt.ColorgetMarkerColor()Returns marker color associated with this type or null if one has not been set by a plugin.intgetMarkerPriority()Returns marker priority associated with this type or -1 if one has not been set by a plugin.intgetTypeId()Returns the id associated with this bookmark type.java.lang.StringgetTypeString()Returns the type as a stringbooleanhasBookmarks()Returns true if there is at least one bookmark defined for this typejava.lang.StringtoString()
-
-
-
Method Detail
-
getTypeString
public java.lang.String getTypeString()
Description copied from interface:BookmarkTypeReturns the type as a string- Specified by:
getTypeStringin interfaceBookmarkType
-
hasBookmarks
public boolean hasBookmarks()
Description copied from interface:BookmarkTypeReturns true if there is at least one bookmark defined for this type- Specified by:
hasBookmarksin interfaceBookmarkType
-
getTypeId
public int getTypeId()
Description copied from interface:BookmarkTypeReturns the id associated with this bookmark type.- Specified by:
getTypeIdin interfaceBookmarkType
-
getIcon
public javax.swing.ImageIcon getIcon()
Description copied from interface:BookmarkTypeReturns Icon associated with this type or null if one has not been set by a plugin.- Specified by:
getIconin interfaceBookmarkType
-
getMarkerColor
public java.awt.Color getMarkerColor()
Description copied from interface:BookmarkTypeReturns marker color associated with this type or null if one has not been set by a plugin.- Specified by:
getMarkerColorin interfaceBookmarkType
-
getMarkerPriority
public int getMarkerPriority()
Description copied from interface:BookmarkTypeReturns marker priority associated with this type or -1 if one has not been set by a plugin.- Specified by:
getMarkerPriorityin interfaceBookmarkType
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-