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

org.fluentlenium.core.hook.HookOptions Maven / Gradle / Ivy

package org.fluentlenium.core.hook;

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

/**
 * Annotation used to declared hook options.
 */
@Inherited
@Target({ElementType.FIELD, ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface HookOptions {
    /**
     * Hook options class.
     *
     * @return hook options class
     */
    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy