Not in Use in new Version
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / CorePlugin.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/CorePlugin.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/CorePlugin.java
deleted file mode 100644 (file)
index 7ce333d..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-package net.sourceforge.phpeclipse.xdebug.core;
-
-import org.eclipse.core.runtime.Plugin;
-import org.osgi.framework.BundleContext;
-import java.util.*;
-
-/**
- * The main plugin class to be used in the desktop.
- */
-public class CorePlugin extends Plugin {
-       //The shared instance.
-       private static CorePlugin plugin;
-       //Resource bundle.
-       private ResourceBundle resourceBundle;
-       
-       /**
-        * The constructor.
-        */
-       public CorePlugin() {
-               super();
-               plugin = this;
-               try {
-                       resourceBundle = ResourceBundle.getBundle("net.sourceforge.phpeclipse.xdebug.core.CorePluginResources");
-               } catch (MissingResourceException x) {
-                       resourceBundle = null;
-               }
-       }
-
-       /**
-        * This method is called upon plug-in activation
-        */
-       public void start(BundleContext context) throws Exception {
-               super.start(context);
-       }
-
-       /**
-        * This method is called when the plug-in is stopped
-        */
-       public void stop(BundleContext context) throws Exception {
-               super.stop(context);
-       }
-
-       /**
-        * Returns the shared instance.
-        */
-       public static CorePlugin getDefault() {
-               return plugin;
-       }
-
-       /**
-        * Returns the string from the plugin's resource bundle,
-        * or 'key' if not found.
-        */
-       public static String getResourceString(String key) {
-               ResourceBundle bundle = CorePlugin.getDefault().getResourceBundle();
-               try {
-                       return (bundle != null) ? bundle.getString(key) : key;
-               } catch (MissingResourceException e) {
-                       return key;
-               }
-       }
-
-       /**
-        * Returns the plugin's resource bundle,
-        */
-       public ResourceBundle getResourceBundle() {
-               return resourceBundle;
-       }
-}