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 PatternExample
8   {
9      @Option(pattern = "(\\w+\\.)*\\w+")
10     List<String> getClasses();
11  }