Package org.testng.internal
Interface IConfiguration
-
- All Known Implementing Classes:
Configuration
public interface IConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddConfigurationListener(IConfigurationListener cl)voidaddExecutionListener(IExecutionListener l)IAnnotationFindergetAnnotationFinder()IConfigurablegetConfigurable()java.util.List<IConfigurationListener>getConfigurationListeners()java.util.List<IExecutionListener>getExecutionListeners()IHookablegetHookable()ITestObjectFactorygetObjectFactory()voidsetAnnotationFinder(IAnnotationFinder finder)voidsetConfigurable(IConfigurable c)voidsetHookable(IHookable h)voidsetObjectFactory(ITestObjectFactory m_objectFactory)
-
-
-
Method Detail
-
getAnnotationFinder
IAnnotationFinder getAnnotationFinder()
-
setAnnotationFinder
void setAnnotationFinder(IAnnotationFinder finder)
-
getObjectFactory
ITestObjectFactory getObjectFactory()
-
setObjectFactory
void setObjectFactory(ITestObjectFactory m_objectFactory)
-
getHookable
IHookable getHookable()
-
setHookable
void setHookable(IHookable h)
-
getConfigurable
IConfigurable getConfigurable()
-
setConfigurable
void setConfigurable(IConfigurable c)
-
getExecutionListeners
java.util.List<IExecutionListener> getExecutionListeners()
-
addExecutionListener
void addExecutionListener(IExecutionListener l)
-
getConfigurationListeners
java.util.List<IConfigurationListener> getConfigurationListeners()
-
addConfigurationListener
void addConfigurationListener(IConfigurationListener cl)
-
-