blob: 3c569730680fdfafdd4c1d749c34e01d9c53d0cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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
*
*******************************************************************************/
package org.eclipse.dltk.internal.corext.refactoring.tagging;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.core.refactoring.participants.RefactoringArguments;
/**
* Interface for refactorings which can be initialized when run as a refactoring
* script.
*
*
*/
public interface IScriptableRefactoring {
/**
* Initializes the refactoring with the refactoring arguments.
*
* @param arguments
* the refactoring arguments
* @return an object describing the status of the initialization. If the
* status has severity <code>FATAL_ERROR</code>, the refactoring
* will not be executed.
*/
public RefactoringStatus initialize(RefactoringArguments arguments);
}