01: /*
02: * Copyright 2001-2006 C:1 Financial Services GmbH
03: *
04: * This software is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License Version 2.1, as published by the Free Software Foundation.
07: *
08: * This software is distributed in the hope that it will be useful,
09: * but WITHOUT ANY WARRANTY; without even the implied warranty of
10: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11: * Lesser General Public License for more details.
12: *
13: * You should have received a copy of the GNU Lesser General Public
14: * License along with this library; if not, write to the Free Software
15: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
16: */
17:
18: package de.finix.contelligent.client.gui.explorer;
19:
20: import java.awt.event.ActionEvent;
21:
22: import javax.swing.AbstractAction;
23:
24: import de.finix.contelligent.client.gui.ContelligentAction;
25: import de.finix.contelligent.client.i18n.Resources;
26:
27: public class MoveAction extends AbstractAction implements
28: ContelligentAction {
29: /**
30: *
31: */
32: private final ExplorerEditor editor;
33:
34: public MoveAction(ExplorerEditor editor) {
35: super ("move", Resources.defaultViewIcon);
36: this .editor = editor;
37: putValue(TYPE, SUBMENU_ACTION);
38: putValue(ACTION_TYPE, EDIT_ACTION);
39: putValue(ACTION_GROUP, EDIT_MOVE_GROUP);
40: putValue(MENU_TARGET, NO_MENU);
41: putValue(BUTTON_TARGET, NO_BUTTON);
42: putValue(POPUP_TARGET, POPUP_MENU);
43: }
44:
45: public void actionPerformed(ActionEvent e) {
46: }
47: }
|