type parameter is not within its bound

superwtk의 이미지

public interface Inheritable<E extends Entry> { ... }

public final class Post implements Inheritable<Post> { ... }

Compile time error: type parameter Post is not within its bound
이걸 해결하려면 어떻게 해야 할까요-_-a

Generics 안쓰고 수동으로-_- 구현하면 문제 없이 잘 됩니다.