Improve javadocs

This commit is contained in:
Timo Westkämper 2015-04-27 20:46:47 +03:00
parent 0a54307d7e
commit d84f189c5a
2 changed files with 6 additions and 4 deletions

View File

@ -174,7 +174,7 @@ public class AbstractMetaDataExportMojo extends AbstractMojo{
private boolean beanAddToString;
/**
* switch for full construction addition
* switch for full constructor addition
*
* @parameter default-value=false
*/
@ -244,14 +244,15 @@ public class AbstractMetaDataExportMojo extends AbstractMojo{
private boolean createScalaSources;
/**
* switch for using schema as suffix in package generation
* switch for using schema as suffix in package generation, full package name will be
* {@code ${packageName}.${schema}}
*
* @parameter default-value=false
*/
private boolean schemaToPackage;
/**
* switch to lowercase name
* switch to normalize schema, table and column names to lowercase
*
* @parameter default-value=false
*/

View File

@ -16,7 +16,8 @@ package com.querydsl.maven;
import com.querydsl.sql.codegen.MetaDataExporter;
/**
* {@code MetadataExportMojo} is a goal for {@link MetaDataExporter} usage and is bound to the generate-sources phased
* {@code MetadataExportMojo} is a goal for {@link MetaDataExporter} execution.
* It is executed by default in the {@code generate-sources} phase.
*
* @phase generate-sources
* @goal export