Bug 46192 - [PATCH] the method getColumnOutline(int column) in the Sheet, HSSFSheet is absent
Summary: [PATCH] the method getColumnOutline(int column) in the Sheet, HSSFSheet is a...
Status: RESOLVED FIXED
Alias: None
Product: POI
Classification: Unclassified
Component: HSSF (show other bugs)
Version: 3.2-FINAL
Hardware: PC Windows XP
: P2 normal (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-12 03:56 UTC by Dmitry Smirnov
Modified: 2015-01-02 20:07 UTC (History)
1 user (show)



Attachments
Patch gives methods to read level of grouped rows and columns (outlines) (8.85 KB, patch)
2014-08-18 08:08 UTC, Simon
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry Smirnov 2008-11-12 03:56:32 UTC
HSSFSheet and Sheet should has method for getting information about outline column.  for example:

Sheet.java:
  public int getColumnOutline(int column){
     ColumnInfoRecord columnInfoRecord = columns.getColInfo(k);
     return columnInfoRecord.getOutlineLevel();
  }

HSSFSheet.java:
  public int getColumnOutline(int column){
      return sheet.getColumnOutline(column);
  }
Comment 1 Simon 2014-08-18 08:08:43 UTC
Created attachment 31925 [details]
Patch gives methods to read level of grouped rows and columns (outlines)

Some methods for getting outline level were protected or private. There is no reason to hide them, reading outlines is important too.
Comment 2 Dominik Stadler 2014-08-18 09:19:48 UTC
Please don't set to resolved unless change is actually applied to Subversion repository...
Comment 3 Simon 2014-08-18 09:55:01 UTC
OK, sorry, I thought "VERIFIED" will be used for it.
Comment 4 Dominik Stadler 2015-01-02 20:07:19 UTC
Thanks for the patch, this is now applied on trunk via r1649107.