org.crsh.cmdline.matcher.impl.Completion Maven / Gradle / Ivy
package org.crsh.cmdline.matcher.impl;
import org.crsh.cmdline.CommandCompletion;
import org.crsh.cmdline.matcher.CmdCompletionException;
/**
* @author Julien Viet
*/
abstract class Completion {
abstract CommandCompletion complete() throws CmdCompletionException;
}