improved javadoc

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1341236 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2012-05-21 22:37:15 +00:00
parent dd4eadd2d4
commit 1ef2b2e74e
1 changed files with 3 additions and 1 deletions

View File

@ -409,7 +409,7 @@ public class PluginXdocGenerator
@SuppressWarnings( "unchecked" )
List<Parameter> parameterList = mojoDescriptor.getParameters();
//remove components and read-only parameters
// remove components and read-only parameters
List<Parameter> list = filterParameters( parameterList );
if ( list != null && list.size() > 0 )
@ -432,6 +432,8 @@ public class PluginXdocGenerator
}
/**
* Filter parameters to only retain those which must be documented, ie not components nor readonly.
*
* @param parameterList not null
* @return the parameters list without components.
*/