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

io.datakernel.test.UseModules Maven / Gradle / Ivy

The newest version!
package io.datakernel.test;

import io.datakernel.di.module.Module;

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

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target({TYPE, METHOD})
@Retention(RUNTIME)
public @interface UseModules {
	Class[] value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy