HELP! extending com.jrefinery.data.XYSeries?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Erik

HELP! extending com.jrefinery.data.XYSeries?

Post by Erik » Wed Sep 25, 2002 3:47 am

I want to write a class, lets call it XYFileSeries, that extends XYSeries (com.jrefinery.data.XYSeries)

The purpose of the class will be to also create a datafile written to disk. My very simple class looks like this for now:

public class XYFileSeries extends com.jrefinery.data.XYSeries {

}


, but I am given a compilation error, "cannot resolve symbol", pointing to the class word.

Why is this not possible? Am I missing something very basic here?


Any input greatly appreciated!

Erik

Doh!

Post by Erik » Wed Sep 25, 2002 9:33 am

Sorry about posting this stupid question. I guess I sort of paniced, I forgot to implement the correct constructors.

Been away from Java for 2 months. The things you forget... :)

Locked