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 w w w .j a va 2 s . c om*/ /** * Created with IntelliJ IDEA. * User: marcus * Date: 10.07.12 * <p/> * Implement this bean, if You want to add some initialization behaviour to * Your bean */ public interface Initializeable { /** * lifecycle function used for lifecycle management after creation and variable injection of a bean * <p/> * use this function in order to perform pre-use-but-after-creation-done-steps */ void postConstruct(); }