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

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

import java.util.List;

@Parameters(commandNames = "add", commandDescription = "Hidden command to add file contents to the index", hidden = true)
public class CommandHidden {

    @Parameter(description = "Patterns of files to be added")
    public List<String> patterns;

    @Parameter(names = "-i")
    public Boolean interactive = false;

}