< prev index next >

jdk/src/jdk.jline/share/classes/jdk/internal/jline/console/completer/ArgumentCompleter.java

Print this page

        

*** 4,24 **** * This software is distributable under the BSD license. See the terms of the * BSD license in the documentation provided with this software. * * http://www.opensource.org/licenses/bsd-license.php */ ! package jline.console.completer; ! import jline.internal.Log; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.LinkedList; import java.util.List; ! import static jline.internal.Preconditions.checkNotNull; /** * A {@link Completer} implementation that invokes a child completer using the appropriate <i>separator</i> argument. * This can be used instead of the individual completers having to know about argument parsing semantics. * --- 4,24 ---- * This software is distributable under the BSD license. See the terms of the * BSD license in the documentation provided with this software. * * http://www.opensource.org/licenses/bsd-license.php */ ! package jdk.internal.jline.console.completer; ! import jdk.internal.jline.internal.Log; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.LinkedList; import java.util.List; ! import static jdk.internal.jline.internal.Preconditions.checkNotNull; /** * A {@link Completer} implementation that invokes a child completer using the appropriate <i>separator</i> argument. * This can be used instead of the individual completers having to know about argument parsing semantics. *
< prev index next >