1 28 package net.sf.jasperreports.engine; 29 30 31 32 38 public class JRDefaultScriptlet extends JRAbstractScriptlet 39 { 40 41 42 45 public JRDefaultScriptlet() 46 { 47 } 48 49 50 53 public void beforeReportInit() throws JRScriptletException 54 { 55 } 56 57 58 61 public void afterReportInit() throws JRScriptletException 62 { 63 } 64 65 66 69 public void beforePageInit() throws JRScriptletException 70 { 71 } 72 73 74 77 public void afterPageInit() throws JRScriptletException 78 { 79 } 80 81 82 85 public void beforeColumnInit() throws JRScriptletException 86 { 87 } 88 89 90 93 public void afterColumnInit() throws JRScriptletException 94 { 95 } 96 97 98 101 public void beforeGroupInit(String groupName) throws JRScriptletException 102 { 103 } 104 105 106 109 public void afterGroupInit(String groupName) throws JRScriptletException 110 { 111 } 112 113 114 117 public void beforeDetailEval() throws JRScriptletException 118 { 119 } 120 121 122 125 public void afterDetailEval() throws JRScriptletException 126 { 127 } 128 129 130 } 131 | Popular Tags |