Files
HRMS/hrmsEjb/net/sf/jasperreports/engine/JRDataSource.java
2025-07-28 13:56:49 +05:30

8 lines
177 B
Java

package net.sf.jasperreports.engine;
public interface JRDataSource {
boolean next() throws JRException;
Object getFieldValue(JRField paramJRField) throws JRException;
}