mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
breakpoints ui. navigation
This commit is contained in:
@@ -98,6 +98,15 @@ class JavaBreakpointItem extends BreakpointItem {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean navigate() {
|
||||
if (myBreakpoint instanceof BreakpointWithHighlighter) {
|
||||
((BreakpointWithHighlighter)myBreakpoint).getSourcePosition().navigate(true);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean allowedToRemove() {
|
||||
return myBreakpointFactory != null && myBreakpointFactory.breakpointCanBeRemoved(myBreakpoint);
|
||||
|
||||
Reference in New Issue
Block a user