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 DefaultExample
8   {
9      @Option(defaultValue="3")
10     int getCount();
11  
12     @Option(defaultValue={"3","4","5"})
13     List<Integer> getCountList();
14  }