blob: ad7c2a0f35e8f1ca52dd1f51a089ad899e0e39b9 [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.ui.tests.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.NullChange;
import org.eclipse.ltk.core.refactoring.Refactoring;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
/**
* useful for tests
*/
public class NullRefactoring extends Refactoring {
public Change createChange(IProgressMonitor pm) throws CoreException {
pm.beginTask("", 1);
pm.worked(1);
pm.done();
return new NullChange("NullRefactoring");
}
public RefactoringStatus checkInitialConditions(IProgressMonitor pm) throws CoreException {
pm.beginTask("", 1);
pm.worked(1);
pm.done();
return new RefactoringStatus();
}
public RefactoringStatus checkFinalConditions(IProgressMonitor pm) throws CoreException {
pm.beginTask("", 1);
pm.worked(1);
pm.done();
return new RefactoringStatus();
}
public String getName() {
return "Null Refactoring";
}
}