Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddRegisterGroupActionDelegate.java')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddRegisterGroupActionDelegate.java91
1 files changed, 0 insertions, 91 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddRegisterGroupActionDelegate.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddRegisterGroupActionDelegate.java
deleted file mode 100644
index f673c7f09f8..00000000000
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddRegisterGroupActionDelegate.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2005 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.debug.internal.ui.actions;
-
-import org.eclipse.cdt.debug.core.model.ICDebugTarget;
-import org.eclipse.debug.core.DebugEvent;
-import org.eclipse.debug.core.DebugException;
-import org.eclipse.debug.core.model.IDebugElement;
-import org.eclipse.debug.ui.DebugUITools;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.viewers.StructuredSelection;
-import org.eclipse.jface.window.Window;
-
-/**
- * A delegate for the "Add register group" action.
- */
-public class AddRegisterGroupActionDelegate extends AbstractViewActionDelegate {
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#getErrorDialogTitle()
- */
- @Override
- protected String getErrorDialogTitle() {
- return ActionMessages.getString( "AddRegisterGroupActionDelegate.0" ); //$NON-NLS-1$
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#getErrorDialogMessage()
- */
- @Override
- protected String getErrorDialogMessage() {
- return ActionMessages.getString( "AddRegisterGroupActionDelegate.1" ); //$NON-NLS-1$
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#doAction()
- */
- @Override
- protected void doAction() throws DebugException {
- RegisterGroupDialog dialog = new RegisterGroupDialog( getView().getSite().getShell(), getDebugTarget().getRegisterDescriptors() );
- if ( dialog.open() == Window.OK ) {
- getDebugTarget().addRegisterGroup( dialog.getName(), dialog.getDescriptors() );
- }
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#update()
- */
- @Override
- protected void update() {
- IAction action = getAction();
- if ( action != null ) {
- ICDebugTarget target = getDebugTarget();
- action.setEnabled( ( target != null ) ? target.isSuspended() : false );
- }
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#doHandleDebugEvent(org.eclipse.debug.core.DebugEvent)
- */
- @Override
- protected void doHandleDebugEvent( DebugEvent event ) {
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.debug.internal.ui.actions.AbstractViewActionDelegate#init(org.eclipse.jface.action.IAction)
- */
- @Override
- public void init( IAction action ) {
- super.init( action );
- Object element = DebugUITools.getDebugContext();
- setSelection( (element != null) ? new StructuredSelection( element ) : new StructuredSelection() );
- update();
- }
-
- private ICDebugTarget getDebugTarget() {
- Object element = getSelection().getFirstElement();
- if ( element instanceof IDebugElement ) {
- return (ICDebugTarget)((IDebugElement)element).getDebugTarget().getAdapter( ICDebugTarget.class );
- }
- return null;
- }
-}

Back to the top