01: package com.salmonllc.ideTools.eclipse;
02:
03: import org.eclipse.jface.action.IAction;
04: import org.eclipse.jface.viewers.ISelection;
05: import org.eclipse.ui.IWorkbenchWindow;
06: import org.eclipse.ui.IWorkbenchWindowActionDelegate;
07:
08: /**
09: * @author Administrator
10: *
11: * To change this generated comment edit the template variable "typecomment":
12: * Window>Preferences>Java>Templates.
13: * To enable and disable the creation of type comments go to
14: * Window>Preferences>Java>Code Generation.
15: */
16: public class RunDreamweaverAction implements
17: IWorkbenchWindowActionDelegate {
18:
19: String _lastFile = null;
20:
21: /**
22: * @see org.eclipse.ui.IWorkbenchWindowActionDelegate#dispose()
23: */
24: public void dispose() {
25: }
26:
27: /**
28: * @see org.eclipse.ui.IWorkbenchWindowActionDelegate#init(IWorkbenchWindow)
29: */
30: public void init(IWorkbenchWindow window) {
31: }
32:
33: /**
34: * @see org.eclipse.ui.IActionDelegate#run(IAction)
35: */
36: public void run(IAction action) {
37: try {
38: String progArgs[] = { "-RUNDREAMWEAVER" };
39: SalmonPlugin.runIDETool(progArgs, false);
40: } catch (Exception e) {
41: e.printStackTrace();
42: }
43: }
44:
45: /**
46: * @see org.eclipse.ui.IActionDelegate#selectionChanged(IAction, ISelection)
47: */
48: public void selectionChanged(IAction action, ISelection selection) {
49: }
50:
51: }
|