diff --git a/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/transform/DefaultRowTokenizer.java b/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/transform/DefaultRowTokenizer.java
index 04deff4..137bfa5 100644
--- a/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/transform/DefaultRowTokenizer.java
+++ b/spring-batch-excel/src/main/java/org/springframework/batch/item/excel/transform/DefaultRowTokenizer.java
@@ -91,10 +91,22 @@ public class DefaultRowTokenizer implements RowTokenizer, InitializingBean {
this.converter = converter;
}
+ /**
+ * Should the name of the sheet be included in the list of columns. Default false
+ *
+ * @param includeSheetName
+ */
public void setIncludeSheetName(final boolean includeSheetName) {
this.includeSheetName = includeSheetName;
}
+ /**
+ * When includeSheetName is true this is the name of the property used to store the name
+ * of the sheet.
+ *
+ * @param attributeForSheetName
+ * @see #setIncludeSheetName(boolean)
+ */
public void setAttributeForSheetName(final String attributeForSheetName) {
this.attributeForSheetName = attributeForSheetName;
}