Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
In this file http://svn.apache.org/viewvc/incubator/odf/trunk/simple/src/main/java/org/odftoolkit/simple/style/TextProperties.java there are functions setBackgroundColor and getBackgroundColor missing.
I propose the following code
public void setBackgroundColorAttribute(Color bkColor)
{
if (bkColor != null)
{
mElement.setFoBackgroundColorAttribute(bkColor.toString());
}
else
{
mElement.setFoBackgroundColorAttribute(null);
}
}public String getBackgroundColorAttribute()
{
return mElement.getFoBackgroundColorAttribute();
}
I attach the proposed code including a JUnit test as a zip file.