Eclipse says I don't implement Enumeration, but I do
- by Harm De Weirdt
Goodmorning everybody,
I'm having a little problem with a project for school.
We are told to make an Iterator that implements Enumeration over a Hashmap.
So i made this Enumeration:
public Enumeration<Object> getEnumeration() {
return new Enumeration<Object>() {
private int itemsDone = 0;
…