Home | History | Annotate | Download | only in args
      1 package com.beust.jcommander.args;
      2 
      3 import com.beust.jcommander.Parameter;
      4 
      5 public class ArgsOutOfMemory
      6 {
      7   @Parameter(names = { "-p", "--pattern"  },
      8       description = "pattern used by 'tail'. See http://logback.qos.ch/manual/layouts.html#ClassicPatternLayout and http://logback.qos.ch/manual/layouts.html#AccessPatternLayout")
      9   public String pattern;
     10 
     11   @Parameter(names = "-q", description = "Filler arg")
     12   public String filler;
     13 }
     14