Home | History | Annotate | Download | only in annotations
      1 package org.testng.internal.annotations;
      2 
      3 import org.testng.annotations.IParametersAnnotation;
      4 
      5 
      6 /**
      7  * An implementation of IParameters
      8  *
      9  * Created on Dec 20, 2005
     10  * @author <a href="mailto:cedric (at) beust.com">Cedric Beust</a>
     11  */
     12 public class ParametersAnnotation
     13   extends BaseAnnotation
     14   implements IParametersAnnotation
     15 {
     16   private String[] m_value  = {};
     17 
     18   @Override
     19   public String[] getValue() {
     20     return m_value;
     21   }
     22 
     23   public void setValue(String[] value) {
     24     m_value = value;
     25   }
     26 
     27 }
     28