[Pydev-cvs] org.python.pydev.debug/src/org/python/pydev/debug/core PydevDebugPlugin.java,1.6,1.7
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-07-02 02:26:11
|
Update of /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14307/src/org/python/pydev/debug/core Modified Files: PydevDebugPlugin.java Log Message: 3.0 port Index: PydevDebugPlugin.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/src/org/python/pydev/debug/core/PydevDebugPlugin.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PydevDebugPlugin.java 17 May 2004 20:17:17 -0000 1.6 --- PydevDebugPlugin.java 2 Jul 2004 02:26:01 -0000 1.7 *************** *** 8,11 **** --- 8,12 ---- import org.eclipse.core.resources.*; import org.eclipse.jface.dialogs.ErrorDialog; + import org.osgi.framework.BundleContext; import org.python.pydev.ui.ImageCache; /** *************** *** 20,27 **** public ImageCache imageCache; ! public PydevDebugPlugin(IPluginDescriptor descriptor) { ! super(descriptor); plugin = this; ! imageCache = new ImageCache(getDescriptor().getInstallURL()); } --- 21,31 ---- public ImageCache imageCache; ! public PydevDebugPlugin() { plugin = this; ! } ! ! public void start(BundleContext context) throws Exception { ! super.start(context); ! imageCache = new ImageCache(PydevDebugPlugin.getDefault().getBundle().getEntry("/")); } *************** *** 31,35 **** public static String getPluginID() { ! return getDefault().getDescriptor().getUniqueIdentifier(); } --- 35,39 ---- public static String getPluginID() { ! return getDefault().getBundle().getSymbolicName(); } |