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

com.nikedlab.android.inject.Component 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 Class can be managed by application context.
 * @author Koert Zeilstra
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Component {
//	/**
//	 * @return Interface that this component implements and can be used to automatic wiring.
//	 */
//	Class value();
	String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy