Back to project page baracus-framework.
The source code is released under:
Apache License
If you think the Android project baracus-framework 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 net.mantucon.baracus.signalling; /*from ww w .j a v a 2s . c o m*/ import net.mantucon.baracus.orm.AbstractModelBase; /** * Created with IntelliJ IDEA. * User: marcus * Date: 27.01.13 * Time: 12:18 * Implement this function to be aware of recordset changes on an certain entity type * Then, you can register it to the context and the function will be fired on each change * on the recordset you are listening to. */ public interface DataChangeAwareComponent<T extends AbstractModelBase> { /** * change callback function. is fired if Baracus detects the change of an instance * * @param changedInstance - the instance which has changed */ public void onChange(T changedInstance); }