blob: 04ac1622e8b286e457c82cda620891273882a701 [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);
public Class getDataProviderClass();
}