
pl.tahona.di.annotation.Bean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of di Show documentation
Show all versions of di Show documentation
Automatic dependency injection for ANDROID and Desktop.
The newest version!
package pl.tahona.di.annotation;
import pl.tahona.di.BeanScope;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(value = ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Bean {
String value() default "";
BeanScope scope() default BeanScope.SINGLETON;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy