summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/beust/jcommander/command/NamedCommandAdd.java
blob: 0773e18c4aa1a2bf039e28257f1dfd5a17a6eb2c (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 = "Add file contents to the index")
public class NamedCommandAdd {

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

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

}