blob: 2cb167b1315ddccdd49f088177ccf78b30b9ecae [file] [log] [blame]
package org.testng.annotations;
/**
* Encapsulate the @Factory / @testng.factory annotation
*
* Created on Dec 20, 2005
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public interface IFactoryAnnotation extends IParameterizable {
public String getDataProvider();
public void setDataProvider(String dataProvider);
}