• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng.annotations;
2 
3 /**
4  * Parent interface for annotations that can receive parameters.
5  *
6  * Created on Dec 20, 2005
7  * @author <a href="mailto:cedric@beust.com">Cedric Beust</a>
8  */
9 public interface IParameterizable extends IAnnotation {
10   /**
11    * The list of variables used to fill the parameters of this method.
12    * These variables must be defined in the property file.
13    *
14    * @deprecated Use @Parameters
15    */
16   @Deprecated
getParameters()17   public String[] getParameters();
18 
19   /**
20    * Whether this annotation is enabled.
21    */
getEnabled()22   public boolean getEnabled();
setEnabled(boolean enabled)23   public void setEnabled(boolean enabled);
24 }
25