blob: c0b715a445ae80898aed1842af85449fb74cc9d8 [file] [log] [blame]
package org.testng.xml.dom;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({METHOD})
public @interface OnElement {
String tag();
String[] attributes();
}