From 39ea7775bded14aacb438db936fa73ee6d42805e Mon Sep 17 00:00:00 2001 From: dsyer Date: Mon, 28 Jan 2008 13:23:21 +0000 Subject: [PATCH] Tidy Javadocs --- .../batch/execution/repository/dao/StepDao.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/spring-batch-execution/src/main/java/org/springframework/batch/execution/repository/dao/StepDao.java b/spring-batch-execution/src/main/java/org/springframework/batch/execution/repository/dao/StepDao.java index 2f3b296f8..1629d9faf 100644 --- a/spring-batch-execution/src/main/java/org/springframework/batch/execution/repository/dao/StepDao.java +++ b/spring-batch-execution/src/main/java/org/springframework/batch/execution/repository/dao/StepDao.java @@ -43,8 +43,7 @@ public interface StepDao { /** * Find all steps with the given Job. * - * @param job - * the job to use as a search key + * @param job the job to use as a search key * @return list of {@link StepInstance} */ public List findSteps(JobInstance job); @@ -88,9 +87,9 @@ public interface StepDao { public void update(StepExecution stepExecution); /** - * Return the count of StepExecutions with the given StepId. + * Return the count of StepExecutions with the given {@link StepInstance}. * - * @param step + * @param step the {@link StepInstance} to check for executions * @return the number of step executions for this step */ public int getStepExecutionCount(StepInstance step); @@ -98,9 +97,8 @@ public interface StepDao { /** * Return all StepExecutions for the given step. * - * @param step - * the step to use as a search key - * @return list of stepExecutions + * @param step the step to use as a search key + * @return list of stepExecutions */ public List findStepExecutions(StepInstance step); }