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