summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/beust/jcommander/args/ArgsLongCommandDescription.java
blob: 398e51436154f734ec9e00f0eb30b096d327db79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.beust.jcommander.args;

import com.beust.jcommander.Parameter;
import com.beust.jcommander.Parameters;

@Parameters(commandNames = {"command"}, commandDescription = "text text text text text " +
        "text text text text text text text text text text text text text text text " +
        "really-really-really-long-word-or-url text text text text text text text.")
public class ArgsLongCommandDescription {
    @Parameter(names = {"-b"}, description = "boolean parameter")
    public boolean var;
}