blob: c18568a8946b1579b98c71d0ad21066014855ca3 [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. - modified and renamed to ILinkedFixCore
*******************************************************************************/
package org.eclipse.jdt.internal.corext.fix;
/**
* A fix which when executed can set up a linked mode model
* and put an editor into linked mode.
*
* @since 1.10
*/
public interface ILinkedFixCore extends ICleanUpFixCore {
/**
* @return the linked proposal model to use to set up linked positions or <b>null</b>
*/
public LinkedProposalModelCore getLinkedPositionsCore();
}