<changes>
<release version="3.5-beta7" date="2009-??-??">
+ <action dev="POI-DEVELOPERS" type="add">47356 - removed unused private fields in HWPF BorderCode</action>
+ <action dev="POI-DEVELOPERS" type="add">47355 - Improved HWPF TableCell to expose TableCellDescriptor</action>
<action dev="POI-DEVELOPERS" type="fix">46610 - Improved HWPF to better handle unicode</action>
<action dev="POI-DEVELOPERS" type="fix">47261 - Fixed SlideShow#removeSlide to remove references to Notes</action>
<action dev="POI-DEVELOPERS" type="fix">47375 - Fixed HSSFHyperlink to correctly set inter-sheet and file links</action>
{
public static final int SIZE = 4;
private short _info;
- private final static BitField _dptLineWidth = BitFieldFactory.getInstance(0xff);
- private final static BitField _brcType = BitFieldFactory.getInstance(0xff00);
private short _info2;
- private final static BitField _ico = BitFieldFactory.getInstance(0xff);
- private final static BitField _dptDpace = BitFieldFactory.getInstance(0x1f00);
- private final static BitField _fShadow = BitFieldFactory.getInstance(0x2000);
- private final static BitField _fFrame = BitFieldFactory.getInstance(0x4000);
public BorderCode()
{
return _width;
}
+ /** Returns the TableCellDescriptor for this cell.*/
+ public TableCellDescriptor getDescriptor(){
+ return _tcd;
+ }
+
}