View Javadoc

1   /*
2    FineConstants.java
3    Creation date : 30/10/2010
4    Copyright © Benjamin Croizet (graffity2199@yahoo.fr)
5   
6    This program is free software; you can redistribute it and/or
7    modify it under the terms of the GNU General Public License
8    or GNU Lesser General Public License as published by the
9    Free Software Foundation; either version 3 of the License,
10   or (at your option) any later version.
11  
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16  
17   You should have received copies of the GNU General Public License
18   and GNU Lesser General Public License along with this program;
19   if not, write to the Free Software Foundation, Inc.,
20   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21   http://www.fsf.org/licensing/licenses/gpl.html
22   http://www.gnu.org/licenses/lgpl.html
23   */
24  
25  package net.sourceforge.plantumldependency.commoncli.constants.log;
26  
27  /**
28   * The class which defines all fine messages constants which are only written in the log file. The
29   * messages also contains the fine code.
30   *
31   * @author Benjamin Croizet (<a href="mailto:graffity2199@yahoo.fr>graffity2199@yahoo.fr</a>)
32   * @since 1.3.0
33   * @version 1.4.0
34   */
35  public final class FineConstants {
36  
37      /** The analyzing command line fine message. */
38      public static final String ANALYSING_COMMAND_LINE_FINE = "[fine-plantuml-dependency-commoncli-001] : Analyzing command line \"{0}\"";
39  
40      /** The argument as String already found line message. */
41      public static final String ARGUMENT_AS_STRING_ALREADY_FOUND_FINE = "[fine-plantuml-dependency-commoncli-002] : Analyzing command line \"{0}\"";
42  
43      /** The directory argument specified fine message. */
44      public static final String DIRECTORY_ARGUMENT_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-003] : Directory \"{0}\" has been specified";
45  
46      /** The file argument specified fine message. */
47      public static final String FILE_ARGUMENT_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-004] : File \"{0}\" has been specified";
48  
49      /** The file argument not specified fine message. */
50      public static final String FILE_ARGUMENT_NOT_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-005] : File \"{0}\" not specified";
51  
52      /** The option specified fine message. */
53      public static final String OPTION_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-006] : Option \"{0}\" has been specified";
54  
55      /** The no command line arguments fine message. */
56      public static final String NO_COMMAND_LINE_ARGUMENTS_FINE = "[fine-plantuml-dependency-commoncli-007] : No command line arguments have been specified";
57  
58      /** The no example command lines fine message. */
59      public static final String NO_COMMAND_LINE_EXAMPLES_FINE = "[fine-plantuml-dependency-commoncli-008] : The program doesn't have an example command lines";
60  
61      /** The no known bugs or limitations fine message. */
62      public static final String NO_KNOWN_BUGS_OR_LIMITATIONS_FINE = "[fine-plantuml-dependency-commoncli-009] : The program doesn't have any known bugs nor limitations";
63  
64      /** The no mandatory options fine message. */
65      public static final String NO_MANDATORY_OPTIONS_FINE = "[fine-plantuml-dependency-commoncli-010] : The program doesn't have any mandatory options";
66  
67      /** The no optional options fine message. */
68      public static final String NO_OPTIONAL_OPTIONS_FINE = "[fine-plantuml-dependency-commoncli-011] : The program doesn't have any optional options";
69  
70      /** The option not specified fine message. */
71      public static final String OPTION_NOT_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-012] : Option \"{0}\" is not specified, it won't be executed";
72  
73      /** The property specified info message. */
74      public static final String PROPERTY_SPECIFIED_FINE = "[info-mazix-cli-013] : The property \"{0}\" has been specified in the property file, its value is \"{0}\"";
75  
76      /** The skipping argument fine message. */
77      public static final String SKIPPING_ARGUMENT_FINE = "[fine-plantuml-dependency-commoncli-014] : Command line argument \"{0}\" does not match with the option \"{1}\"... skipping argument";
78  
79      /** The snapshot version specified info message. */
80      public static final String SNAPSHOT_VERSION_SPECIFIED_FINE = "[fine-plantuml-dependency-commoncli-015] : A snapshot version has been specified in the string \"{0}\"";
81  
82      /**
83       * Private constructor to prevent from instantiation.
84       *
85       * @since 1.3.0
86       */
87      private FineConstants() {
88          super();
89      }
90  }