Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 268036
Collapse All | Expand All

(-)ScriptHandler.java (+11 lines)
Lines 18-23 Link Here
18
18
19
import org.eclipse.birt.chart.computation.DataPointHints;
19
import org.eclipse.birt.chart.computation.DataPointHints;
20
import org.eclipse.birt.chart.computation.LegendEntryRenderingHints;
20
import org.eclipse.birt.chart.computation.LegendEntryRenderingHints;
21
import org.eclipse.birt.chart.computation.PlotComputation;
21
import org.eclipse.birt.chart.datafeed.IDataSetProcessor;
22
import org.eclipse.birt.chart.datafeed.IDataSetProcessor;
22
import org.eclipse.birt.chart.engine.i18n.Messages;
23
import org.eclipse.birt.chart.engine.i18n.Messages;
23
import org.eclipse.birt.chart.exception.ChartException;
24
import org.eclipse.birt.chart.exception.ChartException;
Lines 823-828 Link Here
823
					(Label) tmpArgs[1],
824
					(Label) tmpArgs[1],
824
					(IChartScriptContext) tmpArgs[2] );
825
					(IChartScriptContext) tmpArgs[2] );
825
		}
826
		}
827
		else if ( ScriptHandler.BEFORE_COMPUTATIONS.equals( name ) )
828
		{
829
			javahandler.beforeComputations( (Chart) tmpArgs[0],
830
					(PlotComputation) tmpArgs[1] );
831
		}
832
		else if ( ScriptHandler.AFTER_COMPUTATIONS.equals( name ) )
833
		{
834
			javahandler.afterComputations( (Chart) tmpArgs[0],
835
					(PlotComputation) tmpArgs[1] );
836
		}
826
		else
837
		else
827
		{
838
		{
828
			assert false;
839
			assert false;

Return to bug 268036