01: package org.jahia.sqlprofiler.gui;
02:
03: import org.jCharts.Chart;
04: import java.awt.Dimension;
05:
06: /**
07: * <p>Title: </p>
08: * <p>Description: </p>
09: * <p>Copyright: Copyright (c) 2003</p>
10: * <p>Company: Jahia Ltd</p>
11: * @author not attributable
12: * @version 1.0
13: */
14:
15: public interface ChartModel {
16:
17: public void addChartModelListener(ChartModelListener l);
18:
19: public void removeChartModelListener(ChartModelListener l);
20:
21: public Chart getChart(Dimension dimension);
22:
23: }
|