/******************************************************************************* * Copyright © 2008, 2013 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.edt.ide.ui.internal.refactoring.tagging; import org.eclipse.core.runtime.CoreException; import org.eclipse.ltk.core.refactoring.RefactoringStatus; /** * Represents processors in the JDT space that rename elements. */ public interface INameUpdating { /** * Sets new name for the entity that this refactoring is working on. */ public void setNewElementName(String newName); /** * Get the name for the entity that this refactoring is working on. */ public String getNewElementName(); /** * Gets the current name of the entity that this refactoring is working on. */ public String getCurrentElementName(); /** * Checks if the new name is valid for the entity that this refactoring renames. */ public RefactoringStatus checkNewElementName(String newName) throws CoreException; }