Hi, im new to java and ive just experienced my first big problem.
I have a the following code:
CircleFigure.create();
int radius = 25;
CircleFigure.setColour(Color.red);
CircleFigure.setRadius(radius);
I want to create a circle. Everything works except for Color. It gives the error "Color cannot be resolved". What does that mean? How do I fix this?
Thanks.



