Home | History | Annotate | Download | only in annotations
      1 package org.testng.internal.annotations;
      2 
      3 /**
      4  * A trait shared by all the annotations that have dataProvider/dataProviderClass attributes.
      5  *
      6  * @author Cedric Beust <cedric (at) beust.com>
      7  */
      8 public interface IDataProvidable {
      9   public String getDataProvider();
     10   public void setDataProvider(String v);
     11 
     12   public Class<?> getDataProviderClass();
     13   public void setDataProviderClass(Class<?> v);
     14 }
     15