1 | boolean isPasteActionEnabled() {↵ | | 1 | boolean isCopyActionEnabled() {↵
|
2 | ↵ | | |
|
3 | return false;↵ | | 2 | return false;↵
|
4 | }↵ | | |
|
|
5 | /* (non-Javadoc)↵ | | |
|
| | | 3 | }↵
|
|
| | | 4 | /**↵
|
6 | * @see org.columba.core.gui.frame.focus.FocusOwner#isDeleteActionEnabled()↵ | | 5 | * @see org.columba.addressbook.gui.focus.FocusOwner#isCutActionEnabled()↵
|
7 | */↵ | | 6 | */↵
|
8 | public boolean isDeleteActionEnabled() {↵ | | 7 | public boolean isCutActionEnabled() {↵
|
9 | ↵ | | |
|
10 | return false;↵ | | 8 | return false;↵
|
11 | }↵ | | |
|
|
12 | /* (non-Javadoc)↵ | | |
|
| | | 9 | }↵
|
|
| | | 10 | /**↵
|
13 | * @see org.columba.core.gui.frame.focus.FocusOwner#isSelectAllActionEnabled()↵ | | 11 | * @see org.columba.addressbook.gui.focus.FocusOwner#isDeleteActionEnabled()↵
|
14 | */↵ | | 12 | */↵
|
15 | public boolean isSelectAllActionEnabled() {↵ | | 13 | public boolean isDeleteActionEnabled() {↵
|
16 | ↵ | | |
|
17 | return false;↵ | | 14 | return false;↵
|
18 | }↵ | | |
|
|
19 | /* (non-Javadoc)↵ | | |
|
| | | 15 | }↵
|
|
| | | 16 | /**↵
|
20 | * @see org.columba.core.gui.frame.focus.FocusOwner#isUndoActionEnabled()↵ | | 17 | * @see org.columba.addressbook.gui.focus.FocusOwner#isPasteActionEnabled()↵
|
21 | */↵ | | 18 | */↵
|
22 | public boolean isUndoActionEnabled() {↵ | | 19 | public boolean isPasteActionEnabled() {↵
|
23 | ↵ | | |
|
24 | return false;↵ | | 20 | return false;↵
|
25 | }↵ | | |
|
|
26 | /* (non-Javadoc)↵ | | |
|
| | | 21 | }↵
|
|
| | | 22 | /**↵
|
27 | * @see org.columba.core.gui.frame.focus.FocusOwner#isRedoActionEnabled()↵ | | 23 | * @see org.columba.addressbook.gui.focus.FocusOwner#isRedoActionEnabled()↵
|
28 | */↵ | | 24 | */↵
|
29 | public boolean isRedoActionEnabled() {↵ | | 25 | public boolean isRedoActionEnabled() {↵
|
30 | ↵ | | |
|
31 | return false;↵ | | 26 | return false;↵
|
32 | | | 27 |
|