org.eclipse.jface.fieldassist.IContentProposalProvider Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2005, 2015 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.jface.fieldassist;
/**
* IContentProposalProvider provides an array of IContentProposals that are
* appropriate for a textual dialog field, given the field's current content and
* the current cursor position.
*
* @since 3.2
*
* @see SimpleContentProposalProvider
*/
public interface IContentProposalProvider {
/**
* Return an array of content proposals representing the valid proposals for a
* field.
*
* @param contents
* the current contents of the text field
* @param position
* the current position of the cursor in the contents
*
* @return the array of {@link IContentProposal} that represent valid
* proposals for the field.
*/
IContentProposal[] getProposals(String contents, int position);
}