Interface BookmarkType

  • All Known Implementing Classes:
    BookmarkTypeDB

    public interface BookmarkType
    Interface for bookmark types.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ALL_TYPES  
      static java.lang.String ANALYSIS  
      static java.lang.String ERROR  
      static java.lang.String INFO  
      static java.lang.String NOTE  
      static java.lang.String WARNING  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javax.swing.ImageIcon getIcon()
      Returns Icon associated with this type or null if one has not been set by a plugin.
      java.awt.Color getMarkerColor()
      Returns marker color associated with this type or null if one has not been set by a plugin.
      int getMarkerPriority()
      Returns marker priority associated with this type or -1 if one has not been set by a plugin.
      int getTypeId()
      Returns the id associated with this bookmark type.
      java.lang.String getTypeString()
      Returns the type as a string
      boolean hasBookmarks()
      Returns true if there is at least one bookmark defined for this type
    • Method Detail

      • getTypeString

        java.lang.String getTypeString()
        Returns the type as a string
      • getIcon

        javax.swing.ImageIcon getIcon()
        Returns Icon associated with this type or null if one has not been set by a plugin.
      • getMarkerColor

        java.awt.Color getMarkerColor()
        Returns marker color associated with this type or null if one has not been set by a plugin.
      • getMarkerPriority

        int getMarkerPriority()
        Returns marker priority associated with this type or -1 if one has not been set by a plugin.
      • hasBookmarks

        boolean hasBookmarks()
        Returns true if there is at least one bookmark defined for this type
      • getTypeId

        int getTypeId()
        Returns the id associated with this bookmark type.