()
| 72 | abstract protected Class<?> getType(); |
| 73 | |
| 74 | @SuppressWarnings("unchecked") |
| 75 | Dao<T, ?> getDao() { |
| 76 | return (Dao<T, ?>) daoMap.get(getType()); |
| 77 | } |
| 78 | |
| 79 | @SuppressWarnings("unchecked") |
| 80 | private <V> Dao<T, V> getDaoV() { |
no test coverage detected