blob: 3f01116f3b7100bfaac6977dda2abcf4dba6af50 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.actions.breakpointGroups;
import org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.window.Window;
/**
* Action that opens a dialog to select which breakpoint
* container factories should be applies to the breakpoints
* view.
*/
public class AdvancedGroupBreakpointsByAction extends Action {
private BreakpointsView fView;
public AdvancedGroupBreakpointsByAction(BreakpointsView view) {
super("", IAction.AS_RADIO_BUTTON); //$NON-NLS-1$
fView= view;
}
/* (non-Javadoc)
* @see org.eclipse.jface.action.IAction#run()
*/
public void run() {
if (isChecked()) {
GroupBreakpointsByDialog dialog = new GroupBreakpointsByDialog(fView);
if (dialog.open() == Window.OK) {
fView.setBreakpointOrganizers(dialog.getOrganizers());
}
}
}
}