All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.rsta.ac.css.CompletionGenerator Maven / Gradle / Ivy

Go to download

A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.

The newest version!
package org.fife.rsta.ac.css;

import java.util.List;

import org.fife.ui.autocomplete.Completion;
import org.fife.ui.autocomplete.CompletionProvider;


/**
 * Generates completions based on the current user input.
 *
 * @author Robert Futrell
 * @version 1.0
 */
interface CompletionGenerator {


	/**
	 * Generates a list of completions based on the current user input.
	 *
	 * @param provider The completion provider querying for completions.
	 * @param input The current user input.
	 * @return The list of completions.  This may be null if
	 *         no completions are appropriate.
	 */
	List generate(CompletionProvider provider, String input);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy