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 void
addConfigurationListener(IConfigurationListener cl)
void
addExecutionListener(IExecutionListener l)
IAnnotationFinder
getAnnotationFinder()
IConfigurable
getConfigurable()
List<IConfigurationListener>
getConfigurationListeners()
List<IExecutionListener>
getExecutionListeners()
IHookable
getHookable()
ITestObjectFactory
getObjectFactory()
void
setAnnotationFinder(IAnnotationFinder finder)
void
setConfigurable(IConfigurable c)
void
setHookable(IHookable h)
void
setObjectFactory(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
List<IExecutionListener> getExecutionListeners()
-
addExecutionListener
void addExecutionListener(IExecutionListener l)
-
getConfigurationListeners
List<IConfigurationListener> getConfigurationListeners()
-
addConfigurationListener
void addConfigurationListener(IConfigurationListener cl)
-
-