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.lifecycle; /*from ww w.ja v a2 s . co m*/ /** * Created with IntelliJ IDEA. * User: marcus * Date: 03.04.13 * <p/> * Implement this interface, if You want to add a pre-destroy behaviour * to Your bean */ public interface Destroyable { /** * Lifecycle callback called on bean destruction */ public void onDestroy(); }