first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package net.sf.jasperreports.engine;
public class JRDefaultScriptlet extends JRAbstractScriptlet {
public void beforeReportInit() throws JRScriptletException {}
public void afterReportInit() throws JRScriptletException {}
public void beforePageInit() throws JRScriptletException {}
public void afterPageInit() throws JRScriptletException {}
public void beforeColumnInit() throws JRScriptletException {}
public void afterColumnInit() throws JRScriptletException {}
public void beforeGroupInit(String groupName) throws JRScriptletException {}
public void afterGroupInit(String groupName) throws JRScriptletException {}
public void beforeDetailEval() throws JRScriptletException {}
public void afterDetailEval() throws JRScriptletException {}
}