Interface INotes

All Known Implementing Classes:
NotesTextArea

public interface INotes
Interface for access to notes pane.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Clear pane.
    Get note's text, which may be edited.
    void
    Redo last undone edits
    void
    Set current focus to the notes panel.
    void
    Set note's text for current entry.
    void
    Undo last edits
  • Method Details

    • getNoteText

      String getNoteText()
      Get note's text, which may be edited.
      Returns:
      new note's text
    • setNoteText

      void setNoteText(String note)
      Set note's text for current entry.
      Parameters:
      note - note's text, or null if note doesn't exist
    • clear

      void clear()
      Clear pane.
    • undo

      void undo()
      Undo last edits
    • redo

      void redo()
      Redo last undone edits
    • requestFocus

      void requestFocus()
      Set current focus to the notes panel.