• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.beust.jcommander.args;
2 
3 import com.beust.jcommander.Parameter;
4 import com.beust.jcommander.Parameters;
5 
6 @Parameters(commandNames = {"command"}, commandDescription = "text text text text text " +
7         "text text text text text text text text text text text text text text text " +
8         "really-really-really-long-word-or-url text text text text text text text.")
9 public class ArgsLongCommandDescription {
10     @Parameter(names = {"-b"}, description = "boolean parameter")
11     public boolean var;
12 }
13