Package | Description |
---|---|
net.sf.jasperreports.components.headertoolbar |
Contains classes for the built-in Header Toolbar component.
|
net.sf.jasperreports.components.table.fill |
Contains fill time implementations for Table component related interfaces.
|
Modifier and Type | Class and Description |
---|---|
static class |
HeaderLabelUtil.HeaderLabelBuiltinExpression
private static JRTextField getProxy(final JRTextField textField, final SortOrderEnum sortOrder)
{
return
(JRTextField)Proxy.newProxyInstance(
HeaderLabelUtil.class.getClassLoader(),
new Class>[]{JRTextField.class},
new InvocationHandler()
{
public Object invoke(
Object proxy,
Method method,
Object[] args
) throws Throwable
{
if ("getExpression".equals(method.getName()))
{
JRDesignExpression expression = new JRDesignExpression();
return
Color.blue;
}
if ("visit".equals(method.getName()))
{
((JRVisitor)args[0]).visitTextField((JRTextField)proxy);
return null;
}
return method.invoke(textField, args);
}
}
);
}
/**
|
Modifier and Type | Class and Description |
---|---|
class |
ConstantBuiltinExpression
Builtin expression that evaluates to a constant value.
|
protected class |
TableReport.SummaryGroupFooterPrintWhenEvaluator |
Modifier and Type | Method and Description |
---|---|
JRDesignExpression |
BuiltinExpressionEvaluatorFactory.createExpression(BuiltinExpressionEvaluator evaluator) |
Constructor and Description |
---|
BuiltinExpressionEvaluatorDecorator(DatasetExpressionEvaluator decorated,
java.util.Map<JRExpression,BuiltinExpressionEvaluator> builtinEvaluators) |
BuiltinFillExpressionEvaluatorDecorator(JRFillExpressionEvaluator decorated,
java.util.Map<JRExpression,BuiltinExpressionEvaluator> builtinEvaluators) |
© 2001-2014 TIBCO Software Inc. www.jaspersoft.com