Home | History | Annotate | Download | only in annotations
      1 package org.testng.internal.annotations;
      2 
      3 import org.testng.ITestNGListener;
      4 import org.testng.annotations.IAnnotation;
      5 
      6 public class ListenersAnnotation implements IListeners, IAnnotation {
      7 
      8   private Class<? extends ITestNGListener>[] m_value;
      9 
     10   @Override
     11   public Class<? extends ITestNGListener>[] getValue() {
     12     return m_value;
     13   }
     14 
     15   @Override
     16   public void setValue(Class<? extends ITestNGListener>[] value) {
     17     m_value = value;
     18   }
     19 
     20 }
     21