Move specific reader/writer to subpackages

This commit is contained in:
dsyer
2008-07-03 15:58:22 +00:00
parent 8a10ccb1ee
commit 7facae9c7a
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
package example;
import org.springframework.batch.item.AbstractItemReader;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.support.AbstractItemReader;
/**
* {@link ItemReader} with hard-coded input data.

View File

@@ -2,8 +2,8 @@ package example;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.batch.item.AbstractItemWriter;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.support.AbstractItemWriter;
/**