blob: 1ce510b21798a40e2b70982fba27ddf3d687434d [file] [log] [blame]
package org.testng.internal.annotations;
import org.testng.annotations.IParametersAnnotation;
/**
* An implementation of IParameters
*
* Created on Dec 20, 2005
* @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
*/
public class ParametersAnnotation
extends BaseAnnotation
implements IParametersAnnotation
{
private String[] m_value = {};
public String[] getValue() {
return m_value;
}
public void setValue(String[] value) {
m_value = value;
}
}