Package org.omegat.gui.notes
Interface INotes
-
- All Known Implementing Classes:
NotesTextArea
public interface INotes
Interface for access to notes pane.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear()
Clear pane.java.lang.String
getNoteText()
Get note's text, which may be edited.void
redo()
Redo last undone editsvoid
requestFocus()
Set current focus to the notes panel.void
setNoteText(java.lang.String note)
Set note's text for current entry.void
undo()
Undo last edits
-
-
-
Method Detail
-
getNoteText
java.lang.String getNoteText()
Get note's text, which may be edited.- Returns:
- new note's text
-
setNoteText
void setNoteText(java.lang.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.
-
-