From 1e3ae52862d2996c63c5e08610fcf74fa3f3bca3 Mon Sep 17 00:00:00 2001 From: dsyer Date: Thu, 4 Sep 2008 15:08:54 +0000 Subject: [PATCH] Javadocs --- .../support/ApplicationContextJobFactory.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/support/ApplicationContextJobFactory.java b/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/support/ApplicationContextJobFactory.java index 93afed1bd..86e8c71fc 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/support/ApplicationContextJobFactory.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/configuration/support/ApplicationContextJobFactory.java @@ -36,20 +36,20 @@ public class ApplicationContextJobFactory implements JobFactory { final private String jobName; final private ApplicationContextFactory applicationContextFactory; - + /** - * @param jobName the id of the {@link Job} in the application context to - * be created + * @param jobName the id of the {@link Job} in the application context to be + * created */ public ApplicationContextJobFactory(ApplicationContextFactory applicationContextFactory, String jobName) { super(); this.jobName = jobName; this.applicationContextFactory = applicationContextFactory; } - + /** - * Create a {@link ClassPathXmlApplicationContext} from the path provided - * and pull out a bean with the name given during initialization. + * Create an {@link ApplicationContext} from the factory provided and pull + * out a bean with the name given during initialization. * * @see org.springframework.batch.core.configuration.JobFactory#createJob() */