moving report handling related classes to own package + other minor changes.
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / PHPUnitPlugin.java
1 /*************************************************************************
2  * @author Ali Echihabi (ali_echihabi@ieee.org, ali.echihabi@souss.ca)
3  *
4  * Plugin for PHP unit Testing.
5  * www.phpeclipse.de
6  * 
7  *************************************************************************/
8
9 package net.sourceforge.phpeclipse.phpunit;
10
11 import org.eclipse.core.runtime.CoreException;
12 import org.eclipse.core.runtime.IPluginDescriptor;
13 import org.eclipse.jface.dialogs.IDialogSettings;
14 import org.eclipse.jface.preference.IPreferenceStore;
15 import org.eclipse.jface.resource.ImageRegistry;
16 import org.eclipse.ui.IWorkbench;
17 import org.eclipse.ui.plugin.AbstractUIPlugin;
18
19
20 public class PHPUnitPlugin extends AbstractUIPlugin {
21
22
23         private static PHPUnitPlugin plugin;
24         public static final String PLUGIN_ID= "net.sourceforge.phpeclipse.phpunit"; //$NON-NLS-1$
25
26         /**
27          * @param descriptor
28          */
29         public PHPUnitPlugin(IPluginDescriptor descriptor) {
30                 
31                 super(descriptor);
32                 
33                 plugin= this;
34                                 
35         }
36
37         
38
39         public static PHPUnitPlugin getDefault() {
40                 return plugin;
41         }
42
43         /* (non-Javadoc)
44          * @see org.eclipse.ui.plugin.AbstractUIPlugin#createImageRegistry()
45          */
46         protected ImageRegistry createImageRegistry() {
47                 // TODO Auto-generated method stub
48                 return super.createImageRegistry();
49         }
50
51         /* (non-Javadoc)
52          * @see org.eclipse.ui.plugin.AbstractUIPlugin#getDialogSettings()
53          */
54         public IDialogSettings getDialogSettings() {
55                 // TODO Auto-generated method stub
56                 return super.getDialogSettings();
57         }
58
59         /* (non-Javadoc)
60          * @see org.eclipse.ui.plugin.AbstractUIPlugin#getImageRegistry()
61          */
62         public ImageRegistry getImageRegistry() {
63                 // TODO Auto-generated method stub
64                 return super.getImageRegistry();
65         }
66
67         /* (non-Javadoc)
68          * @see org.eclipse.ui.plugin.AbstractUIPlugin#getPreferenceStore()
69          */
70         public IPreferenceStore getPreferenceStore() {
71                 // TODO Auto-generated method stub
72                 return super.getPreferenceStore();
73         }
74
75         /* (non-Javadoc)
76          * @see org.eclipse.ui.plugin.AbstractUIPlugin#getWorkbench()
77          */
78         public IWorkbench getWorkbench() {
79                 // TODO Auto-generated method stub
80                 return super.getWorkbench();
81         }
82
83         /* (non-Javadoc)
84          * @see org.eclipse.core.runtime.Plugin#initializeDefaultPluginPreferences()
85          */
86         protected void initializeDefaultPluginPreferences() {
87                 // TODO Auto-generated method stub
88                 super.initializeDefaultPluginPreferences();
89         }
90
91         /* (non-Javadoc)
92          * @see org.eclipse.ui.plugin.AbstractUIPlugin#initializeDefaultPreferences(org.eclipse.jface.preference.IPreferenceStore)
93          */
94         protected void initializeDefaultPreferences(IPreferenceStore store) {
95                 // TODO Auto-generated method stub
96                 super.initializeDefaultPreferences(store);
97         }
98
99         /* (non-Javadoc)
100          * @see org.eclipse.ui.plugin.AbstractUIPlugin#initializeImageRegistry(org.eclipse.jface.resource.ImageRegistry)
101          */
102         protected void initializeImageRegistry(ImageRegistry reg) {
103                 // TODO Auto-generated method stub
104                 super.initializeImageRegistry(reg);
105         }
106
107         /* (non-Javadoc)
108          * @see org.eclipse.ui.plugin.AbstractUIPlugin#loadDialogSettings()
109          */
110         protected void loadDialogSettings() {
111                 // TODO Auto-generated method stub
112                 super.loadDialogSettings();
113         }
114
115
116
117         /* (non-Javadoc)
118          * @see org.eclipse.ui.plugin.AbstractUIPlugin#refreshPluginActions()
119          */
120         protected void refreshPluginActions() {
121                 // TODO Auto-generated method stub
122                 super.refreshPluginActions();
123         }
124
125         /* (non-Javadoc)
126          * @see org.eclipse.ui.plugin.AbstractUIPlugin#saveDialogSettings()
127          */
128         protected void saveDialogSettings() {
129                 // TODO Auto-generated method stub
130                 super.saveDialogSettings();
131         }
132
133
134
135         /* (non-Javadoc)
136          * @see org.eclipse.core.runtime.Plugin#shutdown()
137          */
138         public void shutdown() throws CoreException {
139                 // TODO Auto-generated method stub
140                 super.shutdown();
141         }
142
143         /* (non-Javadoc)
144          * @see org.eclipse.core.runtime.Plugin#startup()
145          */
146         public void startup() throws CoreException {
147                 // TODO Auto-generated method stub
148                 super.startup();
149         }
150
151
152
153 }