[BATCH-432] Apparently Mylyn/Subclipse doesn't quite know what changes were actually made...

This commit is contained in:
nebhale
2008-03-07 10:04:13 +00:00
parent fff1f0fb9e
commit 4c4a299bd6
24 changed files with 56 additions and 104 deletions

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.configuration;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
/**
* Strategy for creating a single job.

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.configuration;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.repository.NoSuchJobException;
/**

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.configuration;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.repository.DuplicateJobException;
/**

View File

@@ -1,7 +0,0 @@
<html>
<body>
<p>
Interfaces and generic implementations of domain concerns.
</p>
</body>
</html>

View File

@@ -15,12 +15,12 @@
*/
package org.springframework.batch.core.listener;
import org.springframework.batch.core.domain.BatchListener;
import org.springframework.batch.core.domain.ChunkListener;
import org.springframework.batch.core.domain.ItemReadListener;
import org.springframework.batch.core.domain.ItemWriteListener;
import org.springframework.batch.core.domain.StepExecution;
import org.springframework.batch.core.domain.StepListener;
import org.springframework.batch.core.BatchListener;
import org.springframework.batch.core.ChunkListener;
import org.springframework.batch.core.ItemReadListener;
import org.springframework.batch.core.ItemWriteListener;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.StepListener;
import org.springframework.batch.repeat.ExitStatus;
/**

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.listener;
import org.springframework.batch.core.domain.ChunkListener;
import org.springframework.batch.core.ChunkListener;
/**
* Basic support implementation of {@link ChunkListener}

View File

@@ -15,8 +15,8 @@
*/
package org.springframework.batch.core.listener;
import org.springframework.batch.core.domain.ItemReadListener;
import org.springframework.batch.core.domain.ItemWriteListener;
import org.springframework.batch.core.ItemReadListener;
import org.springframework.batch.core.ItemWriteListener;
/**
* Basic no-op implementation of both the {@link ItemWriteListener} and

View File

@@ -15,8 +15,8 @@
*/
package org.springframework.batch.core.listener;
import org.springframework.batch.core.domain.JobExecution;
import org.springframework.batch.core.domain.JobListener;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobListener;
/**
* @author Dave Syer

View File

@@ -15,8 +15,8 @@
*/
package org.springframework.batch.core.listener;
import org.springframework.batch.core.domain.StepExecution;
import org.springframework.batch.core.domain.StepListener;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.StepListener;
import org.springframework.batch.repeat.ExitStatus;
/**

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.repository;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
/**
* Checked exception that indicates a name clash when registering

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.repository;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
/**
* Base class for checked exceptions related to {@link Job}

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.repository;
import org.springframework.batch.core.domain.JobExecutionException;
import org.springframework.batch.core.JobExecutionException;
/**
* @author Dave Syer

View File

@@ -16,12 +16,12 @@
package org.springframework.batch.core.repository;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.domain.JobExecution;
import org.springframework.batch.core.domain.JobInstance;
import org.springframework.batch.core.domain.JobParameters;
import org.springframework.batch.core.domain.Step;
import org.springframework.batch.core.domain.StepExecution;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobInstance;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.item.ExecutionContext;
/**

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.batch.core.repository;
import org.springframework.batch.core.domain.Job;
import org.springframework.batch.core.Job;
/**

View File

@@ -18,8 +18,8 @@ package org.springframework.batch.core.runtime;
import java.util.Properties;
import org.springframework.batch.core.domain.JobParameters;
import org.springframework.batch.core.domain.JobParametersBuilder;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
/**
* A factory for {@link JobParameters} instances. A job can be

View File

@@ -16,9 +16,9 @@
package org.springframework.batch.core.tasklet;
import org.springframework.batch.core.domain.Step;
import org.springframework.batch.core.domain.StepExecution;
import org.springframework.batch.core.domain.StepListener;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepExecution;
import org.springframework.batch.core.StepListener;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.repeat.ExitStatus;