I'm using Jcreator with java 1.4_2. I noticed that whenever I try to use any
interface I got: class not found. Under Eclipse everything is working fine.
What could be wrong ? For example the program :
************************
public class My_iterator implements Iterator<Student> {
public My_iterator(){};
public boolean hasNext(){return true;};
public Student next(){return new Student();};
public void remove(){};
*********************************
would return no such class iterable (or something I dont have JCreator and
hand now)
Seamus - 16 Nov 2007 17:24 GMT
> I'm using Jcreator with java 1.4_2. I noticed that whenever I try to use any
> interface I got: class not found. Under Eclipse everything is working fine.
[quoted text clipped - 15 lines]
> would return no such class iterable (or something I dont have JCreator and
> hand now)
Just a guess - but 1.4.2 does not support generics.