View Javadoc

1   /*
2    PlantUMLConstants.java
3    Creation date : 14/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;
26  
27  /**
28   * The class which stores all necessary plantUML constants as Strings.
29   *
30   * @author Benjamin Croizet (<a href="mailto:graffity2199@yahoo.fr>graffity2199@yahoo.fr</a>)
31   * @since 1.0.0
32   * @version 1.3.0
33   */
34  public final class PlantUMLConstants {
35  
36      /** The string representing the plantUML "enduml" tag. */
37      public static final String END_PLANTUML = "@enduml";
38  
39      /** The string representing the plantUML "startuml" tag. */
40      public static final String START_PLANTUML = "@startuml";
41  
42      /** The string representing the plantUML left stereotype separator tag. */
43      public static final String STEREOTYPE_LEFT_SEPARATOR = " << ";
44  
45      /** The string representing the plantUML right stereotype separator tag. */
46      public static final String STEREOTYPE_RIGHT_SEPARATOR = " >>";
47  
48      /**
49       * Private constructor to prevent from instantiation.
50       *
51       * @since 1.0.0
52       */
53      private PlantUMLConstants() {
54          super();
55      }
56  }