1   package com.lexicalscope.jewel.cli.examples;
2   
3   import java.util.List;
4   
5   import com.lexicalscope.jewel.cli.Option;
6   
7   public class ClassOptionalUnparsedOption
8   {
9       private List<Integer> myOptionalUnparsedValues;
10  
11      List<Integer> getMyOptionalUnparsedOption()
12      {
13          return myOptionalUnparsedValues;
14      }
15  
16      @Option(defaultValue = {}) void setMyOptionalUnparsedOption(final List<Integer> myOptionalUnparsedValues) {
17          this.myOptionalUnparsedValues = myOptionalUnparsedValues;
18      }
19  }