View Javadoc

1   /*
2    InfoConstants.java
3    Creation date : 13/07/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.cli.constants.log;
26  
27  /**
28   * The class which defines all info messages constants which are written in the log file. The
29   * messages also contains the info code.
30   *
31   * @author Benjamin Croizet (<a href="mailto:graffity2199@yahoo.fr>graffity2199@yahoo.fr</a>)
32   * @since 1.0.0
33   * @version 1.3.0
34   */
35  public final class InfoConstants {
36  
37      /** The execution time info message. */
38      public static final String EXECUTION_TIME_INFO = "[info-plantuml-dependency-cli-000] : Executed in \"{0}\" ms";
39  
40      /** The PlantUML dependency arguments info message. */
41      public static final String PLANTUML_DEPENDENCY_ARGUMENTS_INFO = "[info-plantuml-dependency-cli-001] : PlantUML Dependency arguments : \"{0}\"";
42  
43      /** The starting PlantUML dependency info message. */
44      public static final String STARTING_PLANTUML_DEPENDENCY_INFO = "[info-plantuml-dependency-cli-002] : Starting PlantUML Dependency";
45  
46      /** The treated dependencies info message. */
47      public static final String TREATED_DEPENDENCY_INFO = "[info-plantuml-dependency-cli-003] : Number of processed dependencies : \"{0}\"";
48  
49      /**
50       * Private constructor to prevent from instantiation.
51       *
52       * @since 1.0.0
53       */
54      private InfoConstants() {
55          super();
56      }
57  }