This question is about Jasper Reports.
Suppose I want to create a Jasper Report using JRBeanCollectionDataSource like this ...
jasperPrint = JasperFillManager.fillReport(JRLoader.getInputStream(fileName), parameters, new JRBeanCollectionDataSource(aList));
And suppose that the PoJo I am using has a Property of type List.
How can I access
- The individual items in this List,
- and if this item is itself a Pojo access it's properties in Jasper Report XML file.
For example in the Jasper XML file:
...field name="?????" class="java.lang.String" ...
Thanks for your help ...