View Javadoc

1   package com.lexicalscope.jewel.cli.parser;
2   
3   import com.lexicalscope.jewel.cli.ArgumentValidationException;
4   
5   public interface ArgumentParser
6   {
7       void parseArguments(ParsedArguments parsedArguments, String... arguments) throws ArgumentValidationException;
8   }