1 package org.jahia.sqlprofiler.gui;2 3 import java.util.EventListener ;4 5 /**6 * <p>Title: </p>7 * <p>Description: </p>8 * <p>Copyright: Copyright (c) 2003</p>9 * <p>Company: Jahia Ltd</p>10 * @author not attributable11 * @version 1.012 */13 14 public interface ChartModelListener extends EventListener {15 16 public void chartDataChanged(ChartModelEvent e);17 18 }