/**
* A text extractor for Excel files, that is based
- * on the hssf eventusermodel api.
+ * on the HSSF EventUserModel API.
* It will typically use less memory than
* {@link ExcelExtractor}, but may not provide
* the same richness of formatting.
public SummaryInformation getSummaryInformation() {
throw new IllegalStateException("Metadata extraction not supported in streaming mode, please use ExcelExtractor");
}
+
/**
* Would control the inclusion of cell comments from the document,
throw new IllegalStateException("Comment extraction not supported in streaming mode, please use ExcelExtractor");
}
-
- /**
+ /**
+ * Would control the inclusion of headers and footers from the document,
+ * if we supported it
+ */
+ public void setIncludeHeadersFooters(boolean includeHeadersFooters) {
+ throw new IllegalStateException("Header/Footer extraction not supported in streaming mode, please use ExcelExtractor");
+ }
+
+
+ /**
* Should sheet names be included? Default is true
*/
public void setIncludeSheetNames(boolean includeSheetNames) {
*/
public void setFormulasNotResults(boolean formulasNotResults);
+ /**
+ * Should headers and footers be included in the output?
+ * Default is true
+ */
+ public void setIncludeHeadersFooters(boolean includeHeadersFooters);
+
/**
* Should cell comments be included? Default is false
*/