Coverage Report - com.lexicalscope.jewel.cli.ArgumentPresenter
 
Classes in this File Line Coverage Branch Coverage Complexity
ArgumentPresenter
N/A
N/A
1
 
 1  
 package com.lexicalscope.jewel.cli;
 2  
 
 3  
 import com.lexicalscope.jewel.cli.validation.OptionCollection;
 4  
 
 5  
 
 6  
 interface ArgumentPresenter<O> {
 7  
     O presentArguments(OptionCollection validatedArguments) throws ArgumentValidationException;
 8  
 }