1 /*
2 * Copyright 2009-2012 smartics, Kronseder & Reiner GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package de.smartics.maven.apidoc;
17
18 /**
19 * Constants of this package.
20 *
21 * @author <a href="mailto:robert.reiner@smartics.de">Robert Reiner</a>
22 * @version $Revision:591 $
23 */
24 public final class Constants
25 {
26 // ********************************* Fields *********************************
27
28 // --- constants ------------------------------------------------------------
29
30 /**
31 * The key to store additional parameters in the javadoc param map found in
32 * the configuration of the maven-javadoc-plugin.
33 * <p>
34 * The value of this constant is {@value}.
35 * </p>
36 */
37 public static final String ADDITIONAL_PARAMS = "additionalParams";
38
39 // --- members --------------------------------------------------------------
40
41 // ****************************** Initializer *******************************
42
43 // ****************************** Constructors ******************************
44
45 /**
46 * Constant class pattern.
47 */
48 private Constants()
49 {
50 }
51
52 // ****************************** Inner Classes *****************************
53
54 // ********************************* Methods ********************************
55
56 // --- init -----------------------------------------------------------------
57
58 // --- get&set --------------------------------------------------------------
59
60 // --- business -------------------------------------------------------------
61
62 // --- object basics --------------------------------------------------------
63
64 }