blob: 0773e18c4aa1a2bf039e28257f1dfd5a17a6eb2c [file] [log] [blame]
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;
}