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 www. j a v a 2s .c om import net.mantucon.baracus.orm.AbstractModelBase; /** * Created with IntelliJ IDEA. * User: marcus * Date: 27.01.13 * Time: 12:18 * be aware of deletions on a certain entity type's recordset. @see DataSetChangeAwareComponent */ public interface DeleteAwareComponent<T extends AbstractModelBase> { public void onDelete(); }