Extending an inner interface?

Viewed 4999

I got a simple question:

Why does Eclipse scream about implementing these two interfaces?

public abstract class Gateway implements IPlayerity, IItemity {
    public interface IPlayerity { ... }
    public interface IItemity { ... }
    // I...ity
}

I get this error message:

IPlayerity cannot be resolved to a type

4 Answers
Related