blob: 52ff88abb5b085266999ddc37c15a07724936f24 [file] [log] [blame]
package org.testng.internal.annotations;
import org.testng.annotations.IDataProviderAnnotation;
/**
* An implementation of IDataProvider.
*
* Created on Dec 20, 2005
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public class DataProviderAnnotation
extends BaseAnnotation
implements IDataProviderAnnotation
{
private String m_name;
private boolean m_parallel;
public boolean isParallel() {
return m_parallel;
}
public void setParallel(boolean parallel) {
m_parallel = parallel;
}
public String getName() {
return m_name;
}
public void setName(String name) {
m_name = name;
}
}