Guest User

Untitled

a guest
Aug 10th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. XSSFCell cellRgIntegrated = createCell(reportAll, domainRow + 2, weekColNum);
  2. cellRgIntegrated.setCellValue(rgIntegratedsize);
  3. if (rgIntegratedsize > 0 && !rqIntegratedFilter.contains("")) {
  4. createHyperLink(rqIntegratedFilter, cellRgIntegrated, helper);
  5. cellRgIntegrated.setCellStyle(hyperlinkstyle);
  6. }
  7. cellRgIntegrated.setCellStyle(ReportStyles.reportrelcellstyle);
  8.  
  9. XSSFCell cellBugFixIntegrated = createCell(reportAll, domainRow + 3, weekColNum);
  10. cellBugFixIntegrated.setCellValue(bugFixIntegratedsize);
  11. if (bugFixIntegratedsize > 0 && !errIntegratedFilter.contains("")) {
  12. createHyperLink(errIntegratedFilter, cellBugFixIntegrated, helper);
  13. cellBugFixIntegrated.setCellStyle(hyperlinkstyle);
  14. }
  15. cellBugFixIntegrated.setCellStyle(ReportStyles.reportrelcellstyle);
Add Comment
Please, Sign In to add comment