3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-20 09:50:06 +01:00

Description for getSuggestions with context

Dieser Commit ist enthalten in:
Zeranny 2024-03-10 18:26:14 +00:00
Ursprung b38d97ec5d
Commit 501ed4d753

Datei anzeigen

@ -127,6 +127,14 @@ public abstract class RichParser<E> extends InputParser<E> implements AliasedPar
return Stream.empty(); return Stream.empty();
} }
/**
* Returns a stream of suggestions for the argument at the given index.
*
* @param argumentInput the already provided input for the argument at the given index.
* @param index the index of the argument to get suggestions for.
* @param context the context which may optionally be provided by a parser.
* @return a stream of suggestions matching the given input for the argument at the given index.
*/
protected Stream<String> getSuggestions(String argumentInput, int index, ParserContext context) { protected Stream<String> getSuggestions(String argumentInput, int index, ParserContext context) {
return getSuggestions(argumentInput, index); return getSuggestions(argumentInput, index);
} }