From 9667cad2bf58ebea0a67dc74cb397ea37f73eed7 Mon Sep 17 00:00:00 2001 From: dsyer Date: Sun, 2 Mar 2008 15:04:20 +0000 Subject: [PATCH] OPEN - issue BATCH-404: FactoryBeans for step configuration http://jira.springframework.org/browse/BATCH-404 --- .../batch/execution/step/ItemOrientedStep.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/spring-batch-execution/src/main/java/org/springframework/batch/execution/step/ItemOrientedStep.java b/spring-batch-execution/src/main/java/org/springframework/batch/execution/step/ItemOrientedStep.java index 94ff69304..585e77288 100644 --- a/spring-batch-execution/src/main/java/org/springframework/batch/execution/step/ItemOrientedStep.java +++ b/spring-batch-execution/src/main/java/org/springframework/batch/execution/step/ItemOrientedStep.java @@ -180,10 +180,11 @@ public class ItemOrientedStep extends AbstractStep { } /** - * Register each of the objects as listeners. If the {@link Tasklet} itself - * implements this interface it will be registered automatically, but its - * injected dependencies will not be. This is a good way to get access to - * job parameters and execution context if the tasklet is parameterised. + * Register each of the objects as listeners. If the {@link ItemReader} or + * {@link ItemWriter} themselves implements this interface they will be + * registered automatically, but their injected dependencies will not be. + * This is a good way to get access to job parameters and execution context + * if the tasklet is parameterised. * * @param listeners an array of listener objects of known types. */