public class Edit
extends mvp.Model
| Constructor and Description |
|---|
Edit(mvp.View v)
Construct this.
|
| Modifier and Type | Method and Description |
|---|---|
void |
copy()
The currently selected text segment is copied into the clipboard;
|
void |
cut()
The currently selected text segment is copied into the clipboard and
removed from its context.
|
void |
delete()
Delete the currently selected text.
|
void |
find(java.lang.String text)
Find the given text string in all active windows.
|
void |
paste()
Paste the contents of the clipboard into the currently selected start
position, replacing any selected text from start to end position.
|
void |
redo()
Redo the last undo.
|
void |
repeat(CalendarToolOperation operation,
int repeatTimes)
Redo the given operation the given number of times.
|
void |
selectAll()
Select all text in the current workspace window.
|
void |
undo()
Undo the most recent scheduling operation.
|
public void undo()
public void redo()
public void repeat(CalendarToolOperation operation, int repeatTimes)
public void cut()
public void copy()
public void paste()
public void delete()
public void selectAll()
public void find(java.lang.String text)