![JAR search and dependency download from the Maven repository](/logo.png)
org.fife.rsta.ac.css.CompletionGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagesupport Show documentation
Show all versions of languagesupport Show documentation
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