blob: e18423ed4e2c3bbd03ca151d724206f4d97611fd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.wst.jsdt.web.ui.internal.java.refactoring;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.wst.jsdt.core.IType;
import org.eclipse.wst.jsdt.web.core.internal.java.search.JsSearchScope;
import org.eclipse.wst.jsdt.web.core.internal.java.search.JsSearchSupport;
import org.eclipse.wst.jsdt.web.ui.internal.JsUIMessages;
/**
* @author pavery
*/
public class JSPTypeRenameChange extends Change {
public static Change[] createChangesFor(IType type, String newName) {
JsSearchSupport support = JsSearchSupport.getInstance();
// should be handled by JSPIndexManager
// https://w3.opensource.ibm.com/bugzilla/show_bug.cgi?id=3036
// support.indexWorkspaceAndWait();
JSPTypeRenameRequestor requestor = new JSPTypeRenameRequestor(type, newName);
support.searchRunnable(type, new JsSearchScope(), requestor);
return requestor.getChanges();
}
public Object getModifiedElement() {
// TODO Auto-generated method stub
return null;
}
public String getName() {
return JsUIMessages.JSP_changes;
}
public void initializeValidationData(IProgressMonitor pm) {
// pa_TODO implement
// must be implemented to decide correct value of isValid
}
public RefactoringStatus isValid(IProgressMonitor pm) throws CoreException {
// pa_TODO implement
// This method must ensure that the change object is still valid.
// This is in particular interesting when performing an undo change
// since the workspace could have changed since the undo change has
// been created.
return new RefactoringStatus();
}
public Change perform(IProgressMonitor pm) throws CoreException {
// TODO return the "undo" change here
return null;
}
}