All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.annotations.ParametersAnnotation Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal.annotations;

import org.testng.annotations.IParametersAnnotation;


/**
 * An implementation of IParameters
 *
 * Created on Dec 20, 2005
 * @author Cedric Beust
 */
public class ParametersAnnotation
  extends BaseAnnotation
  implements IParametersAnnotation
{
  private String[] m_value  = {};

  @Override
  public String[] getValue() {
    return m_value;
  }

  public void setValue(String[] value) {
    m_value = value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy