All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nikedlab.android.inject.Autowired Maven / Gradle / Ivy

There is a newer version: 3.0.13
Show newest version
package com.nikedlab.android.inject;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation to indicate that setter method should be used for automatic wiring injection.
 * @author Koert Zeilstra
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Autowired {
    Class implementation() default None.class;

    static class None {
        private static final long serialVersionUID= 1L;
        private None() {
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy