01: /*
02: * This program is free software; you can redistribute it and/or
03: * modify it under the terms of the GNU General Public License
04: * as published by the Free Software Foundation; either version 2
05: * of the License, or any later version.
06: *
07: * This program is distributed in the hope that it will be useful,
08: * but WITHOUT ANY WARRANTY; without even the implied warranty of
09: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10: * GNU General Public License for more details.
11: *
12: * You should have received a copy of the GNU General Public License
13: * along with this program; if not, write to the Free Software
14: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15: */
16: package org.acm.seguin.ide.jedit.action;
17:
18: import java.util.Iterator;
19: import java.util.ArrayList;
20: import java.util.Enumeration;
21: import java.awt.event.ActionEvent;
22:
23: import org.gjt.sp.jedit.jEdit;
24:
25: import org.acm.seguin.ide.jedit.JRefactory;
26: import org.acm.seguin.ide.jedit.UMLProject;
27:
28: /**
29: * Removes all the files below the root from a project, and then calls the
30: * initial project importer.
31: *
32: *@author <a href="mailto:JRefactoryPlugin@ladyshot.demon.co.uk">Mike
33: * Atkinson</a>
34: *@created 23 July 2003
35: *@version $Id: ShowAction.java,v 1.1 2003/09/17 19:52:50 mikeatkinson Exp $
36: *@since 0.0.1
37: */
38: public class ShowAction extends Action {
39:
40: /**
41: * Returns the text to be shown on the button and/or menu item.
42: *
43: *@return The text value
44: */
45: public String getText() {
46: return jEdit.getProperty("jrefactory.action.show");
47: }
48:
49: /**
50: * Reimports files below the project root.
51: *
52: *@param ae Description of the Parameter
53: */
54: public void actionPerformed(ActionEvent ae) {
55: }
56:
57: }
|