blob: c83c51b1442f262b0b33c31292d8173acac5120b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring.reorg;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.ltk.core.refactoring.Refactoring;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jdt.internal.corext.refactoring.RefactoringCoreMessages;
import org.eclipse.jdt.internal.corext.refactoring.rename.RenameVirtualMethodProcessor;
import org.eclipse.jdt.internal.corext.refactoring.util.JavaElementUtil;
import org.eclipse.jdt.internal.corext.util.Messages;
import org.eclipse.jdt.ui.JavaElementLabels;
public class RenameMethodUserInterfaceStarter extends RenameUserInterfaceStarter {
@Override
public boolean activate(Refactoring refactoring, Shell parent, int saveMode) throws CoreException {
RenameVirtualMethodProcessor processor= refactoring.getAdapter(RenameVirtualMethodProcessor.class);
if (processor != null) {
RefactoringStatus status= processor.checkInitialConditions(new NullProgressMonitor());
if (!status.hasFatalError()) {
IMethod method= processor.getMethod();
if (!method.equals(processor.getOriginalMethod())) {
String message= null;
if (method.getDeclaringType().isInterface()) {
message= Messages.format(
RefactoringCoreMessages.MethodChecks_implements,
new String[]{
JavaElementUtil.createMethodSignature(method),
JavaElementLabels.getElementLabel(method.getDeclaringType(), JavaElementLabels.ALL_FULLY_QUALIFIED)});
} else {
message= Messages.format(
RefactoringCoreMessages.MethodChecks_overrides,
new String[]{
JavaElementUtil.createMethodSignature(method),
JavaElementLabels.getElementLabel(method.getDeclaringType(), JavaElementLabels.ALL_FULLY_QUALIFIED)});
}
message= Messages.format(
ReorgMessages.RenameMethodUserInterfaceStarter_message,
message);
if (!MessageDialog.openQuestion(parent,
ReorgMessages.RenameMethodUserInterfaceStarter_name,
message)) {
return false;
}
}
}
}
return super.activate(refactoring, parent, saveMode);
}
}