blob: 9def7aec4581abae5de44a8dc2dffa552d4e17c5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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
*******************************************************************************/
package org.eclipse.jdt.internal.corext.fix;
import org.eclipse.jdt.ui.cleanup.ICleanUpFix;
/**
* A fix which when executed can set up a linked mode model
* and put an editor into linked mode.
*
* @since 3.4
*/
public interface ILinkedFix extends ICleanUpFix {
/**
* @return the linked proposal model to use to set up linked positions or <b>null</b>
*/
LinkedProposalModel getLinkedPositions();
}