|
Problem fixing a new Custom datasource: msg#00036java.jasperreports.general
Hi all: I need showing a graphic who obtain data from a custom datasource. I see the demo sample of datasources in the jasperreports1.2.5 package and I simulate that situation, but I don't find the static method in that sample for textfield "The static method to call to retrive the JRDataSource" who appears in Ireport1.2.5 when I try fixing a new custom datasource(test fail). Mu custom DataSource sample code is: package com.emergya.esteve.tcerebral.web.util; import net.sf.jasperreports.engine.JRDataSource; import net.sf.jasperreports.engine.JRException; import net.sf.jasperreports.engine.JRField; public class SupervivencyDataSource implements JRDataSource { private Object[][] data = { {new Integer(1), new Float(100)}, {new Integer(2), new Float(98.6)} }; private int index = -1; public SupervivencyDataSource() { } public boolean next() throws JRException { index++; return (index < data.length); } public Object getFieldValue(JRField field) throws JRException { Object value = null; String fieldName = field.getName(); if ("mounth".equals(fieldName)) { value = data[index][0]; } else if ("percent".equals(fieldName)) { value = data[index][1]; } return value; } } Any suggestions to resolve? Thank for all ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: Background image not appearing in h tml &excel output, Kalpesh Chordia |
|---|---|
| Next by Date: | report borders, Meenakshi Singh |
| Previous by Thread: | Re: Background image not appearing in h tml &excel output, Kalpesh Chordia |
| Next by Thread: | Third Party JARs reqd for PDF and XLS Export, Kalpesh Chordia |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |