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