blob: 050f03033e027328f18267c2133d383d7ae2addb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.jdt.internal.debug.ui.propertypages;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
public class JavaExceptionBreakpointAdvancedPage extends JavaBreakpointAdvancedPage {
private ExceptionFilterEditor fFilterEditor;
/**
* @see org.eclipse.jdt.internal.debug.ui.propertypages.JavaBreakpointAdvancedPage#doStore()
*/
protected void doStore() {
super.doStore();
fFilterEditor.doStore();
}
protected void createTypeSpecificEditors(Composite parent) {
fFilterEditor= new ExceptionFilterEditor(parent, this);
}
protected Button createButton(Composite parent, String text) {
Button button= new Button(parent, SWT.CHECK | SWT.LEFT);
button.setText(text);
button.setFont(parent.getFont());
button.setLayoutData(new GridData());
return button;
}
}