Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix "unable to instantiate class JavaBreakpointAdvancedPage" #570 #571

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion org.eclipse.jdt.debug.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.debug.ui; singleton:=true
Bundle-Version: 3.13.600.qualifier
Bundle-Version: 3.13.700.qualifier
Bundle-Activator: org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.jdt.debug.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.debug.ui</artifactId>
<version>3.13.600-SNAPSHOT</version>
<version>3.13.700-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.PropertyPage;

public abstract class JavaBreakpointAdvancedPage extends PropertyPage {
public class JavaBreakpointAdvancedPage extends PropertyPage {

ThreadFilterEditor fThreadFilterEditor;
InstanceFilterEditor fInstanceFilterEditor;
Expand Down Expand Up @@ -81,9 +81,13 @@ public void createInstanceFilterEditor(Composite parent) {

/**
* Allow subclasses to create type-specific editors.
*
* @param parent
* parent Composite
*/
abstract void createTypeSpecificEditors(Composite parent);

protected void createTypeSpecificEditors(Composite parent) {
// Do nothing.
}
protected void createThreadFilterEditor(Composite parent) {
fThreadFilterEditor = new ThreadFilterEditor(parent, this);
}
Expand Down
Loading