The following code gives me the error.
SceneNode.java:17: cannot find symbol symbol : method execute() location: class java.lang.Object operation.execute(); ^ 1 error
import java.util.LinkedList;
import java.util.Iterator;
public class SceneNode<T>{
T operation;
public SceneNode() {
}
public SceneNode(T operation) {
this.operation = operation;
}
public void setOperation(T operation) {
this.operation = operation;
}
public void doOperation() {
operation.execute();
}
}
It's a cut down (for your readability) start of a simple scene graph. The node could be a model,transformation,switch .etc so I made a variable called operation that's type is defined by the T class variables. This way I can pass a Transformation/Model/Switch Object (that has an execute method) and pass it like this: SceneNode = new SceneNode(myTransformation);
I'm pretty sure having a base class of SceneNode and Subclassing for all the various types of nodes would be a better idea (I was trying out generics, only learnt about them recently). I'd really like to know why this doesn't work. I must be missing something fundamental about generics.