I have a pojo that compiles data from various source into a single object. The object is instantiated with a single parameter. Example:
Invoice inv=new Invoice(1239);
This will bring back a complete invoice containing other POJO's populated with data from various sources (such as the billing/shipping address as Address objects).
My question is, can I use this a data source within iReport?
Thanks,
David