Interface ICommentManager


@Ser public interface ICommentManager
An interface for simple long-based comment management used by some engines components.
  • Method Details

    • getComments

      Map<Long,String> getComments()
      Get all comments.
      Returns:
    • getComment

      String getComment(long address)
      Retrieve a comment.
      Parameters:
      address -
      Returns:
    • setComment

      boolean setComment(long address, String value)
      Set a comment.
      Parameters:
      address -
      value -
      Returns:
      true on change
    • addComment

      boolean addComment(long address, String value)
      Add a comment.
      Parameters:
      address -
      value -
      Returns: