blob: 1391c80ba6ee87dc720eeb861d494cbfecb621ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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
* Red Hat Inc. - copied and renamed in jdt.core.manipulation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.fix;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.refactoring.CompilationUnitChange;
/**
* A clean up fix calculates a {@link CompilationUnitChange} which can be applied on a document to
* fix one or more problems in a compilation unit.
*
* @since 1.10
*/
public interface ICleanUpFixCore {
/**
* Calculates and returns a {@link CompilationUnitChange} which can be applied on a document to
* fix one or more problems in a compilation unit.
*
* @param progressMonitor the progress monitor or <code>null</code> if none
* @return a compilation unit change change which should not be empty
* @throws CoreException if something went wrong while calculating the change
*/
public CompilationUnitChange createChange(IProgressMonitor progressMonitor) throws CoreException;
}