blob: 16c6c484e85313c7caeac0cad4c76ae85b7f7f75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 SAP AG
*
* 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:
* Lazar Kirchev, SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.console.completion.common;
import java.util.Map;
/**
* This is the interface for providing tab completion.
*/
public interface Completer {
/**
* Returns the possible candidates for completion for the passed string.
*
* @param buffer text to be completed
* @param cursor current position in the text
* @return map of candidate completions, and on which position in the buffer starts the completion
*/
public Map<String, Integer> getCandidates(String buffer, int cursor);
}