Package org.omegat.gui.notes
Interface INotes
- All Known Implementing Classes:
NotesTextArea
public interface INotes
Interface for access to notes pane.
-
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clear pane.Get note's text, which may be edited.voidredo()Redo last undone editsvoidSet current focus to the notes panel.voidsetNoteText(String note) Set note's text for current entry.voidundo()Undo last edits
-
Method Details
-
getNoteText
String getNoteText()Get note's text, which may be edited.- Returns:
- new note's text
-
setNoteText
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.
-