Pavel Jisl created ODFTOOLKIT-326:
-------------------------------------

             Summary: NPE when setting default background in TextCellProperties
                 Key: ODFTOOLKIT-326
                 URL: https://issues.apache.org/jira/browse/ODFTOOLKIT-326
             Project: ODF Toolkit
          Issue Type: Bug
          Components: simple api
    Affects Versions: 0.8.8
            Reporter: Pavel Jisl


I need to set default cell background. I use method setBackgroundColor(Color 
aColor) in TableCellProperties.

It is said in javadoc, that " If the parameter <code>aColor</code> is null, the 
background color definition will be removed.", but it throws 
NullPointerException, because it removes background definition, but instead of 
exit method it tries to set toString() value of null:

                if (aColor == null)
                        
mElement.removeAttribute(FoBackgroundColorAttribute.ATTRIBUTE_NAME.getQName());
                mElement.setFoBackgroundColorAttribute(aColor.toString());



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to