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

com.github.henryco.injector.meta.annotations.Module Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.github.henryco.injector.meta.annotations;

import java.lang.annotation.*;

/**
 * Created 12/15/2017
 *
 * @author Henry
 */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Module {

	Class[] include() default {};

	Class[] targets() default {};
	Class[] targetsRootClass() default {};
	String[] targetsRootPath() default {};

	Class[] components() default {};
	Class[] componentsRootClass() default {};
	String[] componentsRootPath() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy