Copyright (c) 2018 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation Red Hat Inc. - created from CUCorrectionProposal
/******************************************************************************* * Copyright (c) 2018 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation * Red Hat Inc. - created from CUCorrectionProposal *******************************************************************************/
package org.eclipse.jdt.core.manipulation; import org.eclipse.core.runtime.CoreException; import org.eclipse.ltk.core.refactoring.TextChange;
Since:1.11
/** * @since 1.11 */
public interface ICUCorrectionProposal {
Returns the text change that is invoked when the change is applied.
Throws:
Returns:the text change that is invoked when the change is applied
/** * Returns the text change that is invoked when the change is applied. * * @return the text change that is invoked when the change is applied * @throws CoreException if accessing the change failed */
public TextChange getTextChange() throws CoreException; }