00001 /* 00002 * JetWebPlotReader.java 00003 * 00004 * Created on January 25, 2006, 9:27 PM 00005 * 00006 * To change this template, choose Tools | Options and locate the template under 00007 * the Source Creation and Management node. Right-click the template and choose 00008 * Open. You can then make changes to the template in the Source Editor. 00009 */ 00010 00011 package cedar.jetweb.xml; 00012 00013 00014 import java.util.Enumeration; 00015 import cedar.jetweb.model.plots.DataPoint; 00016 import cedar.jetweb.model.plots.DataPlot; 00017 import cedar.jetweb.JetWebException; 00018 00023 public interface JetWebPlotReader { 00024 00025 //public JetWebPlotReader(String filename); 00026 //private Enumeration<DataPoint> getDataPoints(); 00027 public void fillPlot(DataPlot plot) throws JetWebException; 00028 public void setDirectory(String dir) throws JetWebException; 00029 00030 }
Generated Wed Jan 17 09:14:27 GMT 2007