1   package com.lexicalscope.jewel.cli.examples;
2   
3   import java.io.File;
4   import java.util.List;
5   
6   import com.lexicalscope.jewel.cli.Option;
7   
8   public interface FileExample
9   {
10     @Option
11     List<File> getSource();
12  }