Back to project page InfuseFactory.
The source code is released under:
/** * Copyright (c) 2014 Lazu Ioan-Bogdan * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from ...
If you think the Android project InfuseFactory 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.factory.infuse.annotation; /*from w w w . jav a 2 s. c o m*/ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Used to declare which of the constructors is used. If no annotation is present * a constructor that takes a context as a parameter or the default constructor is used. * * <p> * The order is: <br> * - annotation <br> * - context constructor <br> * - default no-argument constructor <br> * </p> * * @author Lazu Ioan-Bogdan */ @Target(ElementType.CONSTRUCTOR) @Retention(RetentionPolicy.RUNTIME) public @interface Instantiate { }