View Javadoc

1   package com.atlassian.webdriver.jira.component;
2   
3   import org.openqa.selenium.By;
4   
5   import java.lang.annotation.ElementType;
6   import java.lang.annotation.Retention;
7   import java.lang.annotation.RetentionPolicy;
8   import java.lang.annotation.Target;
9   
10  
11  @Retention(RetentionPolicy.RUNTIME)
12  @Target(ElementType.FIELD)
13  public @interface ClickableLink
14  {
15      String id() default "";
16      
17      String className() default "";
18      
19      String linkText() default "";
20      
21      String partialLinkText() default "";
22  
23      Class nextPage();
24  }