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

cucumber.api.needle.NeedleInjectionProvider Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.api.needle;

import de.akquinet.jbosscc.needle.injection.InjectionProvider;

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

/**
 * Annotation to mark InjectionProviders in the cucumber glue or cucumber steps. 
* Should be placed on fields of type {@link InjectionProvider} or an array of those. */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface NeedleInjectionProvider { // Nothing here }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy