Added Run Tests Action in the popup menu for .php file
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / actions / RunTestsAction.java
1 /*
2  * Created on Jun 10, 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */
7 package net.sourceforge.phpeclipse.phpunit.actions;
8
9 import org.eclipse.jface.action.IAction;
10 import org.eclipse.jface.viewers.ISelection;
11 import org.eclipse.ui.IObjectActionDelegate;
12 import org.eclipse.ui.IWorkbenchPart;
13
14 /**
15  * @author Ali Echihabi
16  *
17  * To change the template for this generated type comment go to
18  * Window>Preferences>Java>Code Generation>Code and Comments
19  */
20 public class RunTestsAction implements IObjectActionDelegate {
21
22         /* (non-Javadoc)
23          * @see org.eclipse.ui.IObjectActionDelegate#setActivePart(org.eclipse.jface.action.IAction, org.eclipse.ui.IWorkbenchPart)
24          */
25         public void setActivePart(IAction action, IWorkbenchPart targetPart) {
26                 // TODO Auto-generated method stub
27                 
28         }
29
30         /* (non-Javadoc)
31          * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
32          */
33         public void run(IAction action) {
34                 // TODO Auto-generated method stub
35                 
36         }
37
38         /* (non-Javadoc)
39          * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection)
40          */
41         public void selectionChanged(IAction action, ISelection selection) {
42                 // TODO Auto-generated method stub
43                 
44         }
45
46 }