Updated javadoc.
This commit is contained in:
committed by
Michael Minella
parent
a7708c47cf
commit
a5a48c6983
@@ -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 <code>false</code>
|
||||
*
|
||||
* @param includeSheetName
|
||||
*/
|
||||
public void setIncludeSheetName(final boolean includeSheetName) {
|
||||
this.includeSheetName = includeSheetName;
|
||||
}
|
||||
|
||||
/**
|
||||
* When <code>includeSheetName</code> is <code>true</code> 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user