• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.xml.dom;
2 
3 import static java.lang.annotation.ElementType.METHOD;
4 
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
7 
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
9 @Target({METHOD})
10 public @interface OnElement {
11 
tag()12   String tag();
13 
attributes()14   String[] attributes();
15 
16 }
17