Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ac.tuwien.sa13.dao; //from w ww . j av a 2s .com import java.util.List; /** * Generic DAO * * @param <E> * @param <K> */ public interface IGenericDAO<E, K> { void add(E entity); void update(E entity); void remove(E entity); E find(K key); List<E> list(); }