8 lines
177 B
Java
8 lines
177 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
public interface JRDataSource {
|
|
boolean next() throws JRException;
|
|
|
|
Object getFieldValue(JRField paramJRField) throws JRException;
|
|
}
|