144ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwellpackage com.beust.jcommander.command;
244ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
344ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwellimport com.beust.jcommander.Parameter;
444ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwellimport com.beust.jcommander.Parameters;
544ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
644ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwellimport java.util.List;
744ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
844ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell@Parameters(commandNames = "add", commandDescription = "Hidden command to add file contents to the index", hidden = true)
944ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwellpublic class CommandHidden {
1044ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
1144ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell    @Parameter(description = "Patterns of files to be added")
1244ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell    public List<String> patterns;
1344ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
1444ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell    @Parameter(names = "-i")
1544ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell    public Boolean interactive = false;
1644ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell
1744ef916dcf74e46adbf7c2ae99643bd0e97c16e6John Conwell}
18