blob: db1f38701354b2815873d84cd5452bb9a30ed795 [file] [log] [blame]
package org.testng.annotations;
import org.testng.ITestNGListener;
public interface IListenersAnnotation extends IAnnotation {
Class<? extends ITestNGListener>[] getValue();
void setValue(Class<? extends ITestNGListener>[] value);
}