Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java')
-rw-r--r--org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java
index 60b4d3d07..855bc5e23 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/core/refactoring/BreakpointMoveParticipant.java
@@ -54,6 +54,7 @@ public abstract class BreakpointMoveParticipant extends MoveParticipant {
/* (non-Javadoc)
* @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#initialize(java.lang.Object)
*/
+ @Override
protected boolean initialize(Object element) {
if (element instanceof IJavaElement && accepts((IJavaElement)element)) {
fElement = (IJavaElement) element;
@@ -93,6 +94,7 @@ public abstract class BreakpointMoveParticipant extends MoveParticipant {
/* (non-Javadoc)
* @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#getName()
*/
+ @Override
public String getName() {
return RefactoringMessages.BreakpointRenameParticipant_0;
}
@@ -100,6 +102,7 @@ public abstract class BreakpointMoveParticipant extends MoveParticipant {
/* (non-Javadoc)
* @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#checkConditions(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext)
*/
+ @Override
public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) throws OperationCanceledException {
return new RefactoringStatus();
}
@@ -107,6 +110,7 @@ public abstract class BreakpointMoveParticipant extends MoveParticipant {
/* (non-Javadoc)
* @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#createChange(org.eclipse.core.runtime.IProgressMonitor)
*/
+ @Override
public Change createChange(IProgressMonitor pm) throws CoreException, OperationCanceledException {
List changes = new ArrayList();
IResource resource = getBreakpointContainer();

Back to the top