View Javadoc

1   package org.apache.maven.tools.plugin.javadoc;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.Map;
23  
24  import org.apache.maven.tools.plugin.extractor.java.JavaMojoAnnotation;
25  
26  import com.sun.tools.doclets.Taglet;
27  
28  /**
29   * The <tt>@parameter</tt> tag is used to define a Mojo parameter and has annotation parameter.
30   * <br/>
31   * The following is a sample declaration:
32   * <pre>
33   * public class MyMojo extends AbstractMojo
34   * {
35   *   &#x2f;&#x2a;&#x2a;
36   *   &#x20;&#x2a; Dummy parameter.
37   *   &#x20;&#x2a;
38   *   &#x20;&#x2a; &#64;parameter &lt;alias="..."&gt; &lt;default-value="..."&gt; &lt;expression="..."&gt;
39   *   &#x20;&#x2a; &lt;implementation="..."&gt; &lt;property="..."&gt;
40   *   &#x20;&#x2a; ...
41   *   &#x20;&#x2a;&#x2f;
42   *   private Object parameterName;
43   * }
44   * </pre>
45   * To use it, calling the <code>Javadoc</code> tool with the following:
46   * <pre>
47   * javadoc ... -taglet 'org.apache.maven.tools.plugin.javadoc.MojoParameterFieldTaglet'
48   * </pre>
49   *
50   * @see <a href="package-summary.html#package_description">package-summary.html</a>
51   *
52   * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
53   * @version $Id: MojoParameterFieldTaglet.java 1133707 2011-06-09 08:28:59Z stephenc $
54   */
55  public class MojoParameterFieldTaglet
56      extends AbstractMojoFieldTaglet
57  {
58      /** The Javadoc annotation */
59      private static final String NAME = JavaMojoAnnotation.PARAMETER;
60  
61      private static final String[] PARAMETERS_NAME = {
62          JavaMojoAnnotation.PARAMETER_ALIAS,
63          JavaMojoAnnotation.PARAMETER_DEFAULT_VALUE,
64          JavaMojoAnnotation.PARAMETER_EXPRESSION,
65          JavaMojoAnnotation.PARAMETER_IMPLEMENTATION,
66          JavaMojoAnnotation.PARAMETER_PROPERTY };
67  
68      /** The Javadoc text which will be added to the generated page. */
69      protected static final String HEADER = "Is defined by";
70  
71      /**
72       * @return By default, return the string defined in {@linkplain #HEADER}.
73       * @see org.apache.maven.tools.plugin.javadoc.AbstractMojoTaglet#getHeader()
74       * @see #HEADER
75       */
76      public String getHeader()
77      {
78          return HEADER;
79      }
80  
81      /**
82       * @return <code>null</code> since <code>@parameter</code> has no value.
83       * @see org.apache.maven.tools.plugin.javadoc.AbstractMojoTaglet#getAllowedValue()
84       */
85      public String getAllowedValue()
86      {
87          return null;
88      }
89  
90      /**
91       * @return <code>MojoParameterFieldTaglet#PARAMETERS_NAME</code> since <code>@parameter</code> has parameters.
92       * @see org.apache.maven.tools.plugin.javadoc.AbstractMojoTaglet#getAllowedParameterNames()
93       */
94      public String[] getAllowedParameterNames()
95      {
96          return PARAMETERS_NAME;
97      }
98  
99      /**
100      * @return By default, return the name of this taglet.
101      * @see com.sun.tools.doclets.Taglet#getName()
102      * @see MojoParameterFieldTaglet#NAME
103      */
104     public String getName()
105     {
106         return NAME;
107     }
108 
109     /**
110      * Register this Taglet.
111      *
112      * @param tagletMap the map to register this tag to.
113      */
114     public static void register( Map<String, Taglet> tagletMap )
115     {
116         MojoParameterFieldTaglet tag = new MojoParameterFieldTaglet();
117         Taglet t = tagletMap.get( tag.getName() );
118         if ( t != null )
119         {
120             tagletMap.remove( tag.getName() );
121         }
122         tagletMap.put( tag.getName(), tag );
123     }
124 }