I'm using ORMlite in my application and I want to implement a generic type in the following:
public interface AdminDao extends Dao<T, Integer> {
...
}
where "T" would be generic.
Error:
Can not solve symbol T
I'm using ORMlite in my application and I want to implement a generic type in the following:
public interface AdminDao extends Dao<T, Integer> {
...
}
where "T" would be generic.
Error:
Can not solve symbol T
You in the interface statement must also indicate T
public interface AdminDao<T> extends Dao<T, Integer> {
...
}