Author: chatellier Date: 2011-02-02 10:39:31 +0000 (Wed, 02 Feb 2011) New Revision: 649 Log: Fix javadoc Modified: trunk/coser-business/src/main/java/fr/ifremer/coser/services/ControlService.java Modified: trunk/coser-business/src/main/java/fr/ifremer/coser/services/ControlService.java =================================================================== --- trunk/coser-business/src/main/java/fr/ifremer/coser/services/ControlService.java 2011-02-02 10:31:30 UTC (rev 648) +++ trunk/coser-business/src/main/java/fr/ifremer/coser/services/ControlService.java 2011-02-02 10:39:31 UTC (rev 649) @@ -132,7 +132,7 @@ * * @param bean bean to validate * @param category result errors category - * @return + * @return error list */ protected List<ControlError> validate(AbstractDataEntity bean, Category category) { List<ControlError> result = new ArrayList<ControlError>(); @@ -437,7 +437,7 @@ * @param control control * @param category category * @param progress progress monitor - * @return + * @return error list for category (can be {@code null}) */ protected List<ControlError> validateCategorySpecific(Control control, Category category, ProgressMonitor progress) { @@ -464,9 +464,9 @@ * Alerte si Somme(CAPTURES$Nombre par CAPTURES$Annee|Strate|Espece) < nobsmin. * Erreur si CAPT$Nombre n'est pas 0 si le poids dans CAPT$Poids>0 * - * @param control - * @param progress - * @return + * @param control control + * @param progress progress monitor + * @return error list */ protected List<ControlError> validateCategorySpecificCatch( Control control, ProgressMonitor progress) { @@ -734,9 +734,9 @@ /** * Alerte si Somme(TAILLES$Nombre par TAILLES$Annee|Strate|Espece) < nobsmin * - * @param control - * @param progress - * @return + * @param control control + * @param progress progress + * @return error list */ protected List<ControlError> validateCategorySpecificLength( Control control, ProgressMonitor progress) { @@ -824,9 +824,11 @@ } /** - * @param control - * @param progress - * @return + * Specific validation for Haul category. + * + * @param control control + * @param progress progress + * @return {@code null} */ protected List<ControlError> validateCategorySpecificHaul(Control control, ProgressMonitor progress) { @@ -834,9 +836,11 @@ } /** - * @param control - * @param progress - * @return + * Specific validation for Strata category. + * + * @param control control + * @param progress progress + * @return {@code null} */ protected List<ControlError> validateCategorySpecificStrata( Control control, ProgressMonitor progress) {