Back to project page Jello.
The source code is released under:
Apache License
If you think the Android project Jello 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 com.atteo.jello.transaction; /*from ww w. j av a 2s . com*/ import com.atteo.jello.Storable; public interface TransactionManager { public void performDeleteTransaction(Storable storable); public boolean performFindTransaction(Storable storable); public void performInsertTransaction(Storable storable); public void performUpdateTransaction(Storable storable); }