Package org.testng.annotations
Interface IParameterizable
-
- All Superinterfaces:
IAnnotation
- All Known Subinterfaces:
IAfterClass,IAfterGroups,IAfterMethod,IAfterSuite,IAfterTest,IAfterTests,IBaseBeforeAfter,IBeforeClass,IBeforeGroups,IBeforeMethod,IBeforeSuite,IBeforeTest,IConfigurationAnnotation,IFactoryAnnotation,ITest,ITestAnnotation,ITestOrConfiguration
- All Known Implementing Classes:
AfterSuiteAnnotation,BaseBeforeAfter,BeforeSuiteAnnotation,ConfigurationAnnotation,FactoryAnnotation,TestAnnotation,TestOrConfiguration
public interface IParameterizable extends IAnnotation
Parent interface for annotations that can receive parameters. Created on Dec 20, 2005
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleangetEnabled()Whether this annotation is enabled.java.lang.String[]getParameters()Deprecated.Use @ParametersvoidsetEnabled(boolean enabled)
-
-
-
Method Detail
-
getParameters
@Deprecated java.lang.String[] getParameters()
Deprecated.Use @ParametersThe list of variables used to fill the parameters of this method. These variables must be defined in the property file.
-
getEnabled
boolean getEnabled()
Whether this annotation is enabled.
-
setEnabled
void setEnabled(boolean enabled)
-
-