blob: bcb676eee548333b549644e0a67789e9bd09b1c1 [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.junit.refactoring;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants;
import org.eclipse.jdt.internal.junit.util.TestSearchEngine;
public class TypeRenameParticipant extends JUnitRenameParticipant {
private IType fType;
protected boolean initialize(Object element) {
fType= (IType) element;
return isTestOrTestSuite();
}
protected boolean isTestOrTestSuite() {
try {
return TestSearchEngine.isTestOrTestSuite(fType);
} catch (JavaModelException e) {
return false;
}
}
public void createChangeForConfig(ChangeList list, LaunchConfigurationContainer config) throws CoreException {
String typeName= fType.getFullyQualifiedName('.');
String mainType= config.getAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME, (String) null);
if (typeName.equals(mainType)) {
int index= mainType.lastIndexOf('.');
String prefix;
if (index == -1)
prefix= ""; //$NON-NLS-1$
prefix= mainType.substring(0, index + 1);
String newValue= prefix + getNewName();
list.addAttributeChange(config, IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME, newValue);
list.addRenameChangeIfNeeded(config, fType.getElementName());
}
}
}