summaryrefslogtreecommitdiff
path: root/src/test/java/com/beust/jcommander/args/ArgsLongMainParameterDescription.java
blob: 18bb06c669ec37e7560446630bae84ee02aa9594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.beust.jcommander.args;

import com.beust.jcommander.Parameter;

import java.util.ArrayList;
import java.util.List;

public class ArgsLongMainParameterDescription {

    @Parameter(description = "[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 List<String> main = new ArrayList<>();

    @Parameter(names = {"-b"}, description = "boolean parameter")
    public boolean var;
}