Package | Description |
---|---|
net.sf.jasperreports.engine.base |
Contains base implementations for the library's main interfaces.
|
net.sf.jasperreports.engine.design |
Contains design time implementations for the library's main interfaces as well as report compiling tools.
|
Modifier and Type | Method and Description |
---|---|
protected JRBaseScriptlet |
JRBaseObjectFactory.getScriptlet(JRScriptlet scriptlet)
public JRFont getFont(JRFont font)
{
JRBaseFont baseFont = null;
if (font != null)
{
baseFont = (JRBaseFont)get(font);
if (baseFont == null)
{
baseFont =
new JRBaseFont(
defaultStyleProvider,
getReportFont(font.getReportFont()),
font
);
put(font, baseFont);
}
}
return baseFont;
}
/**
|
Modifier and Type | Class and Description |
---|---|
class |
JRDesignScriptlet |
© 2001-2010 Jaspersoft Corporation www.jaspersoft.com