o Fixed some javadoc issues

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@746400 13f79535-47bb-0310-9956-ffa450edef68
master
Benjamin Bentmann 2009-02-20 22:42:13 +00:00
parent 23b1cd791f
commit 1ef2a82af8
5 changed files with 6 additions and 8 deletions

View File

@ -196,7 +196,7 @@ public abstract class AbstractScriptedMojoDescriptorExtractor
* Should be implemented in the sub classes.
*
* @param metadataFilesKeyedByBasedir could be null
* @param pluginDescriptor could be null
* @param request The plugin request, never <code>null</code>.
* @return always null
* @throws ExtractionException if any
* @throws InvalidPluginDescriptorException if any
@ -222,7 +222,7 @@ public abstract class AbstractScriptedMojoDescriptorExtractor
* Should be implemented in the sub classes.
*
* @param scriptFilesKeyedByBasedir could be null
* @param pluginDescriptor could be null
* @param request The plugin request, never <code>null</code>.
* @return always null
* @throws ExtractionException if any
* @throws InvalidPluginDescriptorException if any

View File

@ -49,7 +49,7 @@ public interface Generator
* Execute the generation for a given plugin descriptor.
*
* @param destinationDirectory required
* @param pluginDescriptor required
* @param request required
* @throws IOException if any
*
* @since 2.5

View File

@ -49,8 +49,7 @@ public interface MojoScanner
throws ExtractionException, InvalidPluginDescriptorException;
/**
* @param project not null
* @param pluginDescriptor not null
* @param request not null
* @throws ExtractionException if any
* @throws InvalidPluginDescriptorException if any
* @since 2.5

View File

@ -94,7 +94,7 @@ public class BeanshellMojoDescriptorExtractor
/**
* @param basedir not null
* @param resource not null
* @param pluginDescriptor not null
* @param request not null
* @return a new Mojo descriptor instance
* @throws InvalidPluginDescriptorException if any
*/

View File

@ -613,8 +613,7 @@ public class JavaMojoDescriptorExtractor
}
/**
* @param project not null
* @param encoding The file encoding of the source files, must not be <code>null</code>.
* @param request The plugin request.
* @return an array of java class
*/
protected JavaClass[] discoverClasses( final PluginToolsRequest request )