/******************************************************************************* * Copyright (c) 2017 Alex Xu 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: * Alex Xu - initial API and implementation *******************************************************************************/ package org.eclipse.php.internal.ui.text.correction.proposals; import org.eclipse.dltk.core.ISourceModule; import org.eclipse.php.core.ast.nodes.ITypeBinding; import org.eclipse.php.internal.core.ast.rewrite.ASTRewrite; import org.eclipse.php.internal.core.ast.rewrite.ITrackedNodePosition; import org.eclipse.swt.graphics.Image; /** * A proposal for quick fixes and quick assists that works on a AST rewriter and * enters the linked mode when the proposal is set up. Either a rewriter is * directly passed in the constructor or method {@link #getRewrite()} is * overridden to provide the AST rewriter that is evaluated to the document when * the proposal is applied. * * @since 5.0 */ public class LinkedCorrectionProposal extends ASTRewriteCorrectionProposal { /** * Constructs a linked correction proposal. * * @param name * The display name of the proposal. * @param cu * The compilation unit that is modified. * @param rewrite * The AST rewrite that is invoked when the proposal is applied * <code>null</code> can be passed if {@link #getRewrite()} is * overridden. * @param relevance * The relevance of this proposal. * @param image * The image that is displayed for this proposal or * <code>null</code> if no image is desired. */ public LinkedCorrectionProposal(String name, ISourceModule cu, ASTRewrite rewrite, int relevance, Image image) { super(name, cu, rewrite, relevance, image); } /** * Adds a linked position to be shown when the proposal is applied. All * position with the same group id are linked. * * @param position * The position to add. * @param isFirst * If set, the proposal is jumped to first. * @param groupID * The id of the group the proposal belongs to. All proposals in * the same group are linked. */ public void addLinkedPosition(ITrackedNodePosition position, boolean isFirst, String groupID) { getLinkedProposalModel().getPositionGroup(groupID, true).addPosition(position, isFirst); } /** * Sets the end position of the linked mode to the end of the passed range. * * @param position * The position that describes the end position of the linked * mode. */ public void setEndPosition(ITrackedNodePosition position) { getLinkedProposalModel().setEndPosition(position); } /** * Adds a linked position proposal to the group with the given id. * * @param groupID * The id of the group that should present the proposal * @param proposal * The string to propose. * @param image * The image to show for the position proposal or * <code>null</code> if no image is desired. */ public void addLinkedPositionProposal(String groupID, String proposal, Image image) { getLinkedProposalModel().getPositionGroup(groupID, true).addProposal(proposal, image, 10); } /** * Adds a linked position proposal to the group with the given id. * * @param groupID * The id of the group that should present the proposal * @param type * The binding to use as type name proposal. */ public void addLinkedPositionProposal(String groupID, ITypeBinding type) { getLinkedProposalModel().getPositionGroup(groupID, true).addProposal(type, getCompilationUnit(), 10); } }