1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

[268031] Memory Browser - initial commit (fix typo in package name)

This commit is contained in:
Ted Williams 2009-03-13 19:54:40 +00:00
parent e14e488246
commit bf3cd59be6
6 changed files with 10 additions and 9 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Memory Browser
Bundle-SymbolicName: org.eclipse.cdt.debug.ui.memory.memorybrowser;singleton:=true
Bundle-Version: 1.2.0
Bundle-Activator: org.cdt.debug.ui.memory.memorybrowser.MemoryBrowserPlugin
Bundle-Activator: org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowserPlugin
Bundle-Vendor: org.eclipse
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,

View file

@ -9,7 +9,7 @@
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
*******************************************************************************/
package org.cdt.debug.ui.memory.memorybrowser;
package org.eclipse.cdt.debug.ui.memory.memorybrowser;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;

View file

@ -9,7 +9,7 @@
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
*******************************************************************************/
package org.cdt.debug.ui.memory.memorybrowser;
package org.eclipse.cdt.debug.ui.memory.memorybrowser;
import java.lang.reflect.Method;
import java.math.BigInteger;
@ -98,7 +98,7 @@ import org.eclipse.ui.progress.WorkbenchJob;
public class MemoryBrowser extends ViewPart implements IDebugContextListener, ILaunchListener
{
public static final String ID = "org.cdt.debug.ui.memory.memorybrowser.MemoryBrowser"; //$NON-NLS-1$
public static final String ID = "org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser"; //$NON-NLS-1$
protected StackLayout fStackLayout;
private Composite fRenderingsComposite;
@ -350,7 +350,8 @@ public class MemoryBrowser extends ViewPart implements IDebugContextListener, IL
private void contributeToActionBars() {
IActionBars bars = getViewSite().getActionBars();
fillLocalPullDown(bars.getMenuManager());
fillLocalToolBar(bars.getToolBarManager());
fillLocalToolBar(bars.getToolBarManager());
bars.getToolBarManager().add(new Action() { });
}
private void fillLocalPullDown(IMenuManager manager) {

View file

@ -9,7 +9,7 @@
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
*******************************************************************************/
package org.cdt.debug.ui.memory.memorybrowser;
package org.eclipse.cdt.debug.ui.memory.memorybrowser;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
@ -21,7 +21,7 @@ import org.osgi.framework.BundleContext;
public class MemoryBrowserPlugin extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.cdt.debug.ui.memory.memorybrowser";
public static final String PLUGIN_ID = "org.eclipse.cdt.debug.ui.memory.memorybrowser";
// The shared instance
private static MemoryBrowserPlugin plugin;

View file

@ -9,13 +9,13 @@
* Ted R Williams (Wind River Systems, Inc.) - initial implementation
*******************************************************************************/
package org.cdt.debug.ui.memory.memorybrowser;
package org.eclipse.cdt.debug.ui.memory.memorybrowser;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class Messages {
private static final String BUNDLE_NAME = "org.cdt.debug.ui.memory.memorybrowser.messages"; //$NON-NLS-1$
private static final String BUNDLE_NAME = "org.eclipse.cdt.debug.ui.memory.memorybrowser.messages"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
.getBundle(BUNDLE_NAME);