blob: 89013b4142919c6acc335fee3036b1fdd1e90328 [file] [log] [blame]
package org.testng.internal.annotations;
import org.testng.ITestNGListener;
import org.testng.annotations.IAnnotation;
public class ListenersAnnotation implements IListeners, IAnnotation {
private Class<? extends ITestNGListener>[] m_value;
public Class<? extends ITestNGListener>[] getValue() {
return m_value;
}
public void setValue(Class<? extends ITestNGListener>[] value) {
m_value = value;
}
}