import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import org.eclipse.core.resources.IWorkspace;
-import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.ui.plugin.AbstractUIPlugin;
protected static PHPLaunchingPlugin plugin;
- public PHPLaunchingPlugin(IPluginDescriptor descriptor) {
- super(descriptor);
+ public PHPLaunchingPlugin() {
+ super();
plugin = this;
}
}
public static void log(Throwable e) {
- log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, PHPLaunchingMessages.getString("PHPLaunchingPlugin.internalErrorOccurred"), e)); //$NON-NLS-1$
+ log(new Status(
+ IStatus.ERROR,
+ PLUGIN_ID,
+ IStatus.ERROR,
+ PHPLaunchingMessages
+ .getString("PHPLaunchingPlugin.internalErrorOccurred"), e)); //$NON-NLS-1$
}
+
/**
* This method is called upon plug-in activation
*/