public class SimpleDataProvider implements DatasetProducer, Serializable{ public String getProducerId(){ return "de.laures.cewolf.example.simpledata"; } public boolean hasExpired(Map arg0, Date arg1){ return false; } public Object produceDataSet(Map arg0) throws DatasetProduceException{ DefaultCategoryDataset dataset=new DefaultCategoryDataset(); for (int i=1;i<=10;i++){ dataset.addValue(i*1,"first series",new Integer(i)); } return dataset; } }
I am getting 2 compilation errors when i am trying to compile this file. I think it is not able to find the DatasetProducer interface and DatasetProduceException class.
I work on windows. My cewolfexamples are in "C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\cewolfexample-1.0\WEB-INF". The WEB-INF has all the required directories and files cause I am able to run the example application. I have written this java file in "c:\java" directory and trying to compile it from there. Please tell me if I have to specify any classpath if so what should be the classpath and how do I set it.
-- Mazhar
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35235
7
posted
0
Welcome to JavaRanch.
What command are you using for compilation? How are you adding the cewolf jar file to the classpath?