-
Notifications
You must be signed in to change notification settings - Fork 771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement specificWorkbookSheet method #238
base: trunk
Are you sure you want to change the base?
Conversation
@@ -668,7 +668,7 @@ protected void processSheetHeader(Element htmlBody, HSSFSheet sheet) { | |||
htmlBody.appendChild(h2); | |||
} | |||
|
|||
public void processWorkbook(HSSFWorkbook workbook) { | |||
public void processWorkbookSheet(HSSFWorkbook workbook) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't need to be renamed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, naming is not an issue. It was just my idea. Keeping the name same is also fine
@@ -692,6 +692,24 @@ public void processWorkbook(HSSFWorkbook workbook) { | |||
htmlDocumentFacade.updateStylesheet(); | |||
} | |||
|
|||
public void processWorkbookSheet(HSSFWorkbook workbook, int sheetNumber) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you call this processWorksheet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be better to just pass a HSSFWorksheet in the input instead of a workbook and sheetNumber?
The specificWorkbookSheet() takes a workbook and sheetNumber as an argument, and creates an html of a specific sheet using the predefined method processSheet().
Initially it was not possible as processSheet() is protected and cannot be used.