Changed pom version and @since tags with classes to match the pom version.

This commit is contained in:
Marten Deinum
2014-04-01 20:30:16 +02:00
committed by Michael Minella
parent 6dba40c91b
commit 0027f9b2e1
18 changed files with 18 additions and 18 deletions

View File

@@ -6,7 +6,7 @@
<groupId>org.springframewor.batch</groupId> <groupId>org.springframewor.batch</groupId>
<artifactId>spring-batch-excel</artifactId> <artifactId>spring-batch-excel</artifactId>
<version>1.3.0.BUILD-SNAPSHOT</version> <version>new SecureRandom().nextDouble();BUILD-SNAPSHOT</version>
<properties> <properties>
<spring.batch.version>2.2.5.RELEASE</spring.batch.version> <spring.batch.version>2.2.5.RELEASE</spring.batch.version>

View File

@@ -35,7 +35,7 @@ import java.io.InputStream;
* *
* @param <T> the type * @param <T> the type
* @author Marten Deinum * @author Marten Deinum
* @since 1.1.0 * @since 0.5.0
*/ */
public abstract class AbstractExcelItemReader<T> extends AbstractItemCountingItemStreamItemReader<T> implements public abstract class AbstractExcelItemReader<T> extends AbstractItemCountingItemStreamItemReader<T> implements
ResourceAwareItemReaderItemStream<T>, InitializingBean { ResourceAwareItemReaderItemStream<T>, InitializingBean {

View File

@@ -23,7 +23,7 @@ import org.springframework.batch.item.ParseException;
* simply dependencies to make it is generic as possible. * simply dependencies to make it is generic as possible.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public class ExcelFileParseException extends ParseException { public class ExcelFileParseException extends ParseException {

View File

@@ -20,7 +20,7 @@ package org.springframework.batch.item.excel;
* Callback to handle skipped lines. Useful for header/footer processing. * Callback to handle skipped lines. Useful for header/footer processing.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.1.0 * @since 0.5.0
*/ */
public interface RowCallbackHandler { public interface RowCallbackHandler {

View File

@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel;
* Map rows from an excel sheet to an object. * Map rows from an excel sheet to an object.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
* *
* @param <T> * @param <T>
*/ */

View File

@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel;
* Interface to wrap different Excel implementations like JExcel, JXL or Apache POI. * Interface to wrap different Excel implementations like JExcel, JXL or Apache POI.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
* *
*/ */
public interface Sheet { public interface Sheet {

View File

@@ -30,7 +30,7 @@ import org.springframework.util.ClassUtils;
* the {@link org.springframework.batch.item.file.FlatFileItemReader} * the {@link org.springframework.batch.item.file.FlatFileItemReader}
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
* *
* @param <T> the type * @param <T> the type
*/ */

View File

@@ -24,7 +24,7 @@ import org.springframework.batch.item.excel.Sheet;
* {@link org.springframework.batch.item.excel.Sheet} implementation for JXL. * {@link org.springframework.batch.item.excel.Sheet} implementation for JXL.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public class JxlSheet implements Sheet { public class JxlSheet implements Sheet {

View File

@@ -27,7 +27,7 @@ import java.util.List;
* Class containing utility methods to work with JXL. * Class containing utility methods to work with JXL.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public final class JxlUtils { public final class JxlUtils {

View File

@@ -30,7 +30,7 @@ import org.springframework.util.Assert;
* of fields and construction of objects. * of fields and construction of objects.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
* *
* @param <T> * @param <T>
*/ */

View File

@@ -23,7 +23,7 @@ import org.springframework.batch.item.excel.Sheet;
* back directly rather than a mapped object. * back directly rather than a mapped object.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
* *
*/ */
public class PassThroughRowMapper implements RowMapper<String[]> { public class PassThroughRowMapper implements RowMapper<String[]> {

View File

@@ -28,7 +28,7 @@ import org.springframework.core.io.Resource;
* the {@link org.springframework.batch.item.file.FlatFileItemReader} * the {@link org.springframework.batch.item.file.FlatFileItemReader}
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.2.0 * @since 0.5.0
* *
* @param <T> the type * @param <T> the type
*/ */

View File

@@ -28,7 +28,7 @@ import java.util.List;
* Sheet implementation for Apache POI. * Sheet implementation for Apache POI.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.2.0 * @since 0.5.0
*/ */
public class PoiSheet implements Sheet { public class PoiSheet implements Sheet {

View File

@@ -18,7 +18,7 @@
* Convert a column name to an attribute name and vice versa. * Convert a column name to an attribute name and vice versa.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public interface ColumnToAttributeConverter { public interface ColumnToAttributeConverter {

View File

@@ -27,7 +27,7 @@ import org.springframework.util.StringUtils;
* {@link RowTokenizer} which assumes the column names are on the first row in the sheet. * {@link RowTokenizer} which assumes the column names are on the first row in the sheet.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public class DefaultRowTokenizer implements RowTokenizer, InitializingBean { public class DefaultRowTokenizer implements RowTokenizer, InitializingBean {

View File

@@ -25,7 +25,7 @@ import java.util.Map;
* configuration. If a mapping cannot be found it returns the name as is. * configuration. If a mapping cannot be found it returns the name as is.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public class MappingColumnToAttributeConverter implements ColumnToAttributeConverter { public class MappingColumnToAttributeConverter implements ColumnToAttributeConverter {

View File

@@ -19,7 +19,7 @@ package org.springframework.batch.item.excel.transform;
* {@link ColumnToAttributeConverter} which simply returns the given value. * {@link ColumnToAttributeConverter} which simply returns the given value.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public class PassThroughColumnToAttributeConverter implements ColumnToAttributeConverter { public class PassThroughColumnToAttributeConverter implements ColumnToAttributeConverter {

View File

@@ -22,7 +22,7 @@ import org.springframework.batch.item.file.transform.FieldSet;
* Interface that is used by framework to convert a Cell[] into a {@link org.springframework.batch.item.file.transform.FieldSet}. * Interface that is used by framework to convert a Cell[] into a {@link org.springframework.batch.item.file.transform.FieldSet}.
* *
* @author Marten Deinum * @author Marten Deinum
* @since 1.0.0 * @since 0.5.0
*/ */
public interface RowTokenizer { public interface RowTokenizer {