blob: 429a7ad9a04cd6bad0c6b80a4031257cc252a75f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.acceleo.query.runtime;
/**
* A proposal for the completion.
*
* @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
*/
public interface ICompletionProposal {
/**
* Gets the proposed {@link String}.
*
* @return the proposed {@link String}
*/
String getProposal();
/**
* Gets the cursor offset in the {@link ICompletionProposal#getProposal() proposed message}.
*
* @return the cursor offset in the {@link ICompletionProposal#getProposal() proposed message}
*/
int getCursorOffset();
/**
* Gets the {@link Object} associated to the proposal.
*
* @return the {@link Object} associated to the proposal
*/
Object getObject();
/**
* Return a description that describes this proposal.
*
* @return a description that describes this proposal.
*/
String getDescription();
}