com.epam.jdi.light.elements.pageobjects.annotations.ClickArea Maven / Gradle / Ivy
package com.epam.jdi.light.elements.pageobjects.annotations;
import com.epam.jdi.light.common.ElementArea;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by Roman Iovlev on 14.02.2018
* Email: [email protected]; Skype: roman.iovlev
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
public @interface ClickArea {
ElementArea value();
}