All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.crsh.cmdline.matcher.impl.EmptyCompletion Maven / Gradle / Ivy

There is a newer version: 1.2.0-cr6
Show newest version
package org.crsh.cmdline.matcher.impl;

import org.crsh.cmdline.CommandCompletion;
import org.crsh.cmdline.Delimiter;
import org.crsh.cmdline.matcher.CmdCompletionException;
import org.crsh.cmdline.spi.ValueCompletion;

/**
 * @author Julien Viet
 */
class EmptyCompletion extends Completion {

  @Override
  CommandCompletion complete() throws CmdCompletionException {
    return new CommandCompletion(Delimiter.EMPTY, ValueCompletion.create());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy