I have a constructor that takes a java.awt.Compon ent as an argument:
public DesignContainer (Component comp,...){...}
If I pass it a javax.media.ope ngl.GLCanvas object,it takes it,but the lines :
comp instanceof GLCanvas -returns false
GLCanvas canv=(GLCanvas) comp -gives ClassCastExcept ion
(-->I cannot downcast)
...