complete method

List<String> complete(
  1. List<String> args,
  2. String compLine,
  3. int compPoint
)

Implementation

List<String> complete(List<String> args, String compLine, int compPoint) {
  return getArgsCompletions(_parser, args, compLine, compPoint);
}