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

org.fluentlenium.core.hook.Hook 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 a hook on a test adapter, container or element field.
 */
@Inherited
@Target({ElementType.FIELD, ElementType.TYPE, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Hook {
    /**
     * Hook class.
     *
     * @return hook class
     */
    Class> value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy