@@ -101,7 +101,7 @@ public abstract class AbstractParser
101
101
/**
102
102
* {@inheritDoc}
103
103
*
104
- * @return a int.
104
+ * @return a int
105
105
*/
106
106
public int getType ()
107
107
{
@@ -117,7 +117,7 @@ public void setEmitComments( boolean emitComments )
117
117
/**
118
118
* <p>isEmitComments.</p>
119
119
*
120
- * @return a boolean.
120
+ * @return a boolean
121
121
*/
122
122
public boolean isEmitComments ()
123
123
{
@@ -127,11 +127,11 @@ public boolean isEmitComments()
127
127
/**
128
128
* Execute a macro on the given sink.
129
129
*
130
- * @param macroId An id to lookup the macro.
131
- * @param request The corresponding MacroRequest.
132
- * @param sink The sink to receive the events.
133
- * @throws org.apache.maven.doxia.macro.MacroExecutionException if an error occurred during execution.
134
- * @throws org.apache.maven.doxia.macro.manager.MacroNotFoundException if the macro could not be found.
130
+ * @param macroId an id to lookup the macro
131
+ * @param request the corresponding MacroRequest
132
+ * @param sink the sink to receive the events
133
+ * @throws org.apache.maven.doxia.macro.MacroExecutionException if an error occurred during execution
134
+ * @throws org.apache.maven.doxia.macro.manager.MacroNotFoundException if the macro could not be found
135
135
*/
136
136
// Made public right now because of the structure of the APT parser and
137
137
// all its inner classes.
@@ -148,7 +148,7 @@ public void executeMacro( String macroId, MacroRequest request, Sink sink )
148
148
/**
149
149
* Returns the current base directory.
150
150
*
151
- * @return The base directory.
151
+ * @return the base directory
152
152
* @deprecated this does not work in multi-module builds, see DOXIA-373
153
153
*/
154
154
protected File getBasedir ()
@@ -171,17 +171,17 @@ protected File getBasedir()
171
171
*
172
172
* Convenience method to parse an arbitrary string and emit events into the given sink.
173
173
*
174
- * @param string A string that provides the source input.
175
- * @param sink A sink that consumes the Doxia events.
176
- * @throws org.apache.maven.doxia.parser.ParseException if the string could not be parsed.
174
+ * @param string a string that provides the source input
175
+ * @param sink a sink that consumes the Doxia events
176
+ * @throws org.apache.maven.doxia.parser.ParseException if the string could not be parsed
177
177
* @since 1.1
178
178
*/
179
179
public void parse ( String string , Sink sink )
180
180
throws ParseException
181
181
{
182
182
parse ( new StringReader ( string ), sink );
183
183
}
184
-
184
+
185
185
/** {@inheritDoc} */
186
186
@ Override
187
187
public void parse ( Reader source , Sink sink , String reference )
@@ -193,7 +193,7 @@ public void parse( Reader source, Sink sink, String reference )
193
193
/**
194
194
* Set <code>secondParsing</code> to true, if we need a second parsing.
195
195
*
196
- * @param second True for second parsing.
196
+ * @param second true for second parsing
197
197
*/
198
198
public void setSecondParsing ( boolean second )
199
199
{
@@ -203,7 +203,7 @@ public void setSecondParsing( boolean second )
203
203
/**
204
204
* Indicates if we are currently parsing a second time.
205
205
*
206
- * @return true if we are currently parsing a second time.
206
+ * @return true if we are currently parsing a second time
207
207
* @since 1.1
208
208
*/
209
209
protected boolean isSecondParsing ()
@@ -237,7 +237,7 @@ protected Log getLog()
237
237
/**
238
238
* Gets the current {@link MacroManager}.
239
239
*
240
- * @return The current {@link MacroManager}.
240
+ * @return the current {@link MacroManager}
241
241
* @since 1.1
242
242
*/
243
243
protected MacroManager getMacroManager ()
@@ -260,7 +260,7 @@ protected void init()
260
260
/**
261
261
* The current Doxia version.
262
262
*
263
- * @return the current Doxia version as a String.
263
+ * @return the current Doxia version as a String
264
264
* @since 1.2
265
265
*/
266
266
protected static String doxiaVersion ()
0 commit comments