*
*/
@SuppressWarnings("deprecation")
public JRReportFont getReportFont(JRReportFont font)
{
JRBaseReportFont fillFont = null;
if (font != null)
{
fillFont = (JRBaseReportFont)get(font);
if (fillFont == null)
{
fillFont = new JRBaseReportFont(font);
put(font, fillFont);
}
}
return fillFont;