Javadocs + test case name change

This commit is contained in:
dsyer
2009-04-09 18:57:40 +00:00
parent 2cec79b65c
commit e10eca009b
2 changed files with 9 additions and 2 deletions

View File

@@ -18,7 +18,14 @@ package org.springframework.batch.repeat;
public enum RepeatStatus {
CONTINUABLE(true), FINISHED(false);
/**
* Indicates that processing can continue.
*/
CONTINUABLE(true),
/**
* Indicates that processing is finished (either successful or unsuccessful)
*/
FINISHED(false);
private final boolean continuable;