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