I am a beginner in Eclipse and building librairies. I followed the Eclipse Library Template tutorial. All works fine. I make another class, and it's OK. But now, I want to call the first class with the second in the same package. For example like this :
package template.library;
import processing.core.*;
import template.library.Circle;
public class ManyCircle {
PApplet parent;
Circle circ;
public ManyCircle(PApplet _parent) {
parent = _parent;
circ = new Circle(parent, 300,100,120);
}
public void addCircle() {
circ.afficher();
}
}
The automatic corrector underline the word Circle in red.
I can build the class without error, but in the Processing sketch, it does not find the class Circle :
Error :The import template.library.Circle cannot be resolved
When I do :
Project -> Clean -> clean all Projects and rebuild all is working.