X-Git-Url: http://git.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/PHPUnitPlugin.java b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/PHPUnitPlugin.java
index e3873a4..e59bcab 100644
--- a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/PHPUnitPlugin.java
+++ b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/PHPUnitPlugin.java
@@ -1,50 +1,40 @@
-/*
- * Created on Sep 4, 2004
+/*************************************************************************
+ * @author Ali Echihabi (ali_echihabi@ieee.org, ali.echihabi@souss.ca)
  *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package net.sourceforge.phpeclipse.phpunit;
+ * Plugin for PHP unit Testing.
+ * www.phpeclipse.de
+ * 
+ *************************************************************************/
 
-import java.net.MalformedURLException;
-import java.net.URL;
-import java.util.ResourceBundle;
+package net.sourceforge.phpeclipse.phpunit;
 
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IPluginDescriptor;
 import org.eclipse.jface.dialogs.IDialogSettings;
 import org.eclipse.jface.preference.IPreferenceStore;
-import org.eclipse.jface.resource.ImageDescriptor;
 import org.eclipse.jface.resource.ImageRegistry;
 import org.eclipse.ui.IWorkbench;
 import org.eclipse.ui.plugin.AbstractUIPlugin;
 
-/**
- * @author Ali Echihabi
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public class PHPUnitPlugin extends AbstractUIPlugin {
 
+public class PHPUnitPlugin extends AbstractUIPlugin {
 
 
 	private static PHPUnitPlugin plugin;
-	private ResourceBundle resourceBundle;
-
+	public static final String PLUGIN_ID= "net.sourceforge.phpeclipse.phpunit"; //$NON-NLS-1$
 
 	/**
 	 * @param descriptor
 	 */
 	public PHPUnitPlugin(IPluginDescriptor descriptor) {
+		
 		super(descriptor);
 		
-		plugin = this;
+		plugin= this;
+				
+	}
 
-		
 	
-		
-	}
 
 	public static PHPUnitPlugin getDefault() {
 		return plugin;
@@ -158,25 +148,6 @@ public class PHPUnitPlugin extends AbstractUIPlugin {
 		super.startup();
 	}
 
-	/**
-	 * @param string
-	 */
-	public static ImageDescriptor getImageDescriptor(String name) {
-		
-		String iconPath = "icons/";
-		try {
-			URL installURL = getDefault().getDescriptor().getInstallURL();
-			URL url = new URL(installURL, iconPath + name);
-			
-			System.out.println("url:" + url.toExternalForm());
-			
-			return ImageDescriptor.createFromURL(url);
-		} catch (MalformedURLException e) {
-			// should not happen
-			return ImageDescriptor.getMissingImageDescriptor();
-		}		
-		
-		
-	}
+
 
 }