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: *@author <a href="mailto:JRefactoryPlugin@ladyshot.demon.co.uk">Mike
30: * Atkinson</a>
31: *@created 23 July 2003
32: *@version $Id: ReloadAllAction.java,v 1.1 2003/09/17 19:52:50 mikeatkinson Exp $
33: *@since 0.0.1
34: */
35: public class ReloadAllAction extends Action {
36:
37: /**
38: * Returns the text to be shown on the button and/or menu item.
39: *
40: *@return The text value
41: */
42: public String getText() {
43: return jEdit.getProperty("jrefactory.action.reload_all");
44: }
45:
46: /**
47: * Reimports files below the project root.
48: *
49: *@param ae Description of the Parameter
50: */
51: public void actionPerformed(ActionEvent ae) {
52: }
53:
54: }
|