javadoc fix (task -> item)

This commit is contained in:
robokaso
2008-04-29 14:26:44 +00:00
parent c944b66195
commit 471948a824
2 changed files with 4 additions and 3 deletions

View File

@@ -42,16 +42,16 @@ public class StepContribution {
}
/**
* Increment the counter for the number of tasks executed.
* Increment the counter for the number of items processed.
*/
public void incrementItemCount() {
itemCount++;
}
/**
* Public access to the task execution counter.
* Public access to the item counter.
*
* @return the task execution counter.
* @return the item counter.
*/
public int getItemCount() {
return itemCount;