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.cli.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.0.0
33   * @version 1.3.0
34   */
35  public final class FineConstants {
36  
37      /** The creating dependency fine message. */
38      public static final String CREATING_DEPENDENCY_FINE = "[fine-plantuml-dependency-cli-000] : Creating the dependency \"{0}\" with the type \"{1}\"";
39  
40      /** The dependency already seen info message. */
41      public static final String DEPENDENCY_ALREADY_SEEN_FINE = "[fine-plantuml-dependency-cli-001] : The dependency \"{0}\" has already been seen, don't have to add it to the seen object Map";
42  
43      /** The dependency not seen with default type info message. */
44      public static final String DEPENDENCY_NOT_SEEN_DEFAULT_TYPE_FINE = "[fine-plantuml-dependency-cli-002] : The dependency \"{0}\" has not been seen yet, creating it with default type";
45  
46      /** The dependency not seen info message. */
47      public static final String DEPENDENCY_NOT_SEEN_FINE = "[fine-plantuml-dependency-cli-003] : The dependency \"{0}\" has not been seen yet, creating it with type \"{1}\"";
48  
49      /** The display type option not managed fine message. */
50      public static final String DISPLAY_TYPE_OPTION_NOT_MANAGED_FINE = "[fine-plantuml-dependency-cli-004] : Display type option \"{0}\" isn't managed, UML relations don't have to be generated";
51  
52      /** The import is an implementation, an extension or an annotation fine message. */
53      public static final String IMPORT_IS_AN_EXTENSION_AN_IMPLEMENTATION_OR_AN_ANNOTATION_FINE = "[fine-plantuml-dependency-cli-005] : Import \"{0}\" is either an implementation, an extension or an annotation, skipping UML use relation generation here";
54  
55      /** The dependency is not displayable fine message. */
56      public static final String DEPENDENCY_IS_NOT_DISPLAYABLE_FINE = "[fine-plantuml-dependency-cli-006] : Dependency \"{0}\" is not displayable, UML relation doesn't have to be generated";
57  
58      /** The import is an interface fine message. */
59      public static final String IMPORT_TYPE_NOT_FOUND = "[fine-plantuml-dependency-cli-007] : Import type \"{0}\" not found in the import collection, skipping it...";
60  
61      /** The parent type string empty fine message. */
62      public static final String JAVA_PARENT_TYPE_STRING_EMPTY_FINE = "[fine-plantuml-dependency-cli-008] : The java parent type string to parse is empty, no parent to extract";
63  
64      /** The java type found fine message. */
65      public static final String JAVA_TYPE_FOUND_FINE = "[fine-plantuml-dependency-cli-009] : Java type \"{0}\" has been found";
66  
67      /** The no package found fine message. */
68      public static final String NO_PACKAGE_FOUND_FINE = "[fine-plantuml-dependency-cli-010] : No package name has been found";
69  
70      /** The programming language found fine message. */
71      public static final String PROGRAMMING_LANGUAGE_FOUND_FINE = "[fine-plantuml-dependency-cli-011] : Programming language \"{0}\" has been found";
72  
73      /** The updating dependency fine message. */
74      public static final String UPDATING_DEPENDENCY_FINE = "[fine-plantuml-dependency-cli-012] : Updating the dependency \"{0}\" with the type \"{1}\"";
75  
76      /**
77       * Private constructor to prevent from instantiation.
78       *
79       * @since 1.0.0
80       */
81      private FineConstants() {
82          super();
83      }
84  }