Skip to content

Commit 8bfb5be

Browse files
abelsromeroslachiewicz
authored andcommitted
(doc) misc javadoc updates
1 parent baa05cf commit 8bfb5be

File tree

3 files changed

+25
-28
lines changed

3 files changed

+25
-28
lines changed

doxia-core/src/main/java/org/apache/maven/doxia/Doxia.java

+8-11
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,21 @@ public interface Doxia
4141
* Parses the given source model using a parser with given id,
4242
* and emits Doxia events into the given sink.
4343
*
44-
* @param source not null reader that provides the source document.
45-
* You could use <code>newReader</code> methods from {@link org.codehaus.plexus.util.ReaderFactory}.
46-
* @param parserId Identifier for the parser to use.
47-
* @param sink A sink that consumes the Doxia events.
48-
* @throws org.apache.maven.doxia.parser.manager.ParserNotFoundException
49-
* if no parser could be found for the given id.
50-
* @throws org.apache.maven.doxia.parser.ParseException if the model could not be parsed.
44+
* @param source not null reader that provides the source document
45+
* @param parserId identifier for the parser to use
46+
* @param sink a sink that consumes the Doxia events
47+
* @throws ParserNotFoundException if no parser could be found for the given id
48+
* @throws ParseException if the model could not be parsed
5149
*/
5250
void parse( Reader source, String parserId, Sink sink )
5351
throws ParserNotFoundException, ParseException;
5452

5553
/**
5654
* Return a parser for the given <code>parserId</code>.
5755
*
58-
* @param parserId Identifier for the parser to use.
59-
* @return the parser defining by parserId.
60-
* @throws org.apache.maven.doxia.parser.manager.ParserNotFoundException
61-
* if no parser could be found for the given id.
56+
* @param parserId identifier for the parser to use
57+
* @return the parser identified by parserId
58+
* @throws ParserNotFoundException if no parser could be found for the given id
6259
*/
6360
Parser getParser( String parserId )
6461
throws ParserNotFoundException;

doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractParser.java

+16-16
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public abstract class AbstractParser
101101
/**
102102
* {@inheritDoc}
103103
*
104-
* @return a int.
104+
* @return a int
105105
*/
106106
public int getType()
107107
{
@@ -117,7 +117,7 @@ public void setEmitComments( boolean emitComments )
117117
/**
118118
* <p>isEmitComments.</p>
119119
*
120-
* @return a boolean.
120+
* @return a boolean
121121
*/
122122
public boolean isEmitComments()
123123
{
@@ -127,11 +127,11 @@ public boolean isEmitComments()
127127
/**
128128
* Execute a macro on the given sink.
129129
*
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
135135
*/
136136
// Made public right now because of the structure of the APT parser and
137137
// all its inner classes.
@@ -148,7 +148,7 @@ public void executeMacro( String macroId, MacroRequest request, Sink sink )
148148
/**
149149
* Returns the current base directory.
150150
*
151-
* @return The base directory.
151+
* @return the base directory
152152
* @deprecated this does not work in multi-module builds, see DOXIA-373
153153
*/
154154
protected File getBasedir()
@@ -171,17 +171,17 @@ protected File getBasedir()
171171
*
172172
* Convenience method to parse an arbitrary string and emit events into the given sink.
173173
*
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
177177
* @since 1.1
178178
*/
179179
public void parse( String string, Sink sink )
180180
throws ParseException
181181
{
182182
parse( new StringReader( string ), sink );
183183
}
184-
184+
185185
/** {@inheritDoc} */
186186
@Override
187187
public void parse( Reader source, Sink sink, String reference )
@@ -193,7 +193,7 @@ public void parse( Reader source, Sink sink, String reference )
193193
/**
194194
* Set <code>secondParsing</code> to true, if we need a second parsing.
195195
*
196-
* @param second True for second parsing.
196+
* @param second true for second parsing
197197
*/
198198
public void setSecondParsing( boolean second )
199199
{
@@ -203,7 +203,7 @@ public void setSecondParsing( boolean second )
203203
/**
204204
* Indicates if we are currently parsing a second time.
205205
*
206-
* @return true if we are currently parsing a second time.
206+
* @return true if we are currently parsing a second time
207207
* @since 1.1
208208
*/
209209
protected boolean isSecondParsing()
@@ -237,7 +237,7 @@ protected Log getLog()
237237
/**
238238
* Gets the current {@link MacroManager}.
239239
*
240-
* @return The current {@link MacroManager}.
240+
* @return the current {@link MacroManager}
241241
* @since 1.1
242242
*/
243243
protected MacroManager getMacroManager()
@@ -260,7 +260,7 @@ protected void init()
260260
/**
261261
* The current Doxia version.
262262
*
263-
* @return the current Doxia version as a String.
263+
* @return the current Doxia version as a String
264264
* @since 1.2
265265
*/
266266
protected static String doxiaVersion()

doxia-core/src/main/java/org/apache/maven/doxia/parser/AbstractXmlParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public void parse( Reader source, Sink sink )
153153
setSecondParsing( false );
154154
init();
155155
}
156-
156+
157157
/**
158158
* Initializes the parser with custom entities or other options.
159159
*

0 commit comments

Comments
 (0)