summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/beust/jcommander/args/CommandLineArgs2.java
blob: ac62792922f94368d198c841a75382f4e71eff6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
 * Copyright (C) 2010 the original author or authors.
 * See the notice.md file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.beust.jcommander.args;

import com.beust.jcommander.Parameter;
import com.beust.jcommander.converters.FileConverter;

import java.io.File;
import java.util.List;

public class CommandLineArgs2 {
  @Parameter(description = "list of files")
  List<String> list;

  @Parameter(names = { "-v", "--verbose" }, description = "print verbose log messages.", arity = 1)
  public boolean verbose = false;

  @Parameter(names = { "-h", "--help" }, description = "show this help.")
  public boolean showHelp = false;

  @Parameter(names = { "-F", "--flush-preferences" }, description = "flush gui preferences.")
  public boolean flushPreferences = false;

  @Parameter(names = { "-L", "--flush-licensed" }, description = "flush licensed.")
  public boolean flushLicensed = false;

  @Parameter(names = { "-I", "--index-file" }, description = "indexes the given file.")
  public Long indexFile;

  @Parameter(names = { "-b", "--bonjour" }, description = "enable Bonjour.")
  public boolean enableBonjour = false;

  @Parameter(names = { "-m", "--md5" }, description = "create an MD5 checksum for the given file.", converter = FileConverter.class)
  public File md5File;

  @Parameter(names = { "-c", "--cat" }, description = "'cat' the given Lilith logfile.", converter = FileConverter.class)
  public File catFile;

  @Parameter(names = { "-t", "--tail" }, description = "'tail' the given Lilith logfile.", converter = FileConverter.class)
  public File tailFile;

  @Parameter(names = { "-p", "--pattern" }, description = "pattern used by 'cat' or 'tail'.")
  public String pattern;

  @Parameter(names = { "-f", "--keep-running" }, description = "keep tailing the given Lilith logfile.")
  public boolean keepRunning = false;

  @Parameter(names = { "-n", "--number-of-lines" }, description = "number of entries printed by cat or tail")
  public Integer numberOfLines = -1;

  @Parameter(names = { "-e", "--export-preferences" }, description = "export preferences into the given file.")
  public String exportPreferencesFile;

  @Parameter(names = { "-i", "--import-preferences" }, description = "import preferences from the given file.")
  public String importPreferencesFile;
}