Coverage Report - com.lexicalscope.jewel.cli.parser.ArgumentParser
 
Classes in this File Line Coverage Branch Coverage Complexity
ArgumentParser
N/A
N/A
1
 
 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  
 }