Package org.testng.internal
Interface IConfiguration
-
- All Known Implementing Classes:
Configuration
public interface IConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaddConfigurationListener(IConfigurationListener cl)default voidaddExecutionListener(IExecutionListener l)default booleanaddExecutionListenerIfAbsent(IExecutionListener l)booleanalwaysRunListeners()IAnnotationFindergetAnnotationFinder()IConfigurablegetConfigurable()java.util.List<IConfigurationListener>getConfigurationListeners()java.util.List<IExecutionListener>getExecutionListeners()IExecutorFactorygetExecutorFactory()IHookablegetHookable()IInjectorFactorygetInjectorFactory()ITestObjectFactorygetObjectFactory()voidsetAlwaysRunListeners(boolean alwaysRun)voidsetAnnotationFinder(IAnnotationFinder finder)voidsetConfigurable(IConfigurable c)voidsetExecutorFactory(IExecutorFactory factory)voidsetHookable(IHookable h)voidsetInjectorFactory(IInjectorFactory factory)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
default void addExecutionListener(IExecutionListener l)
-
addExecutionListenerIfAbsent
default boolean addExecutionListenerIfAbsent(IExecutionListener l)
-
getConfigurationListeners
java.util.List<IConfigurationListener> getConfigurationListeners()
-
addConfigurationListener
void addConfigurationListener(IConfigurationListener cl)
-
alwaysRunListeners
boolean alwaysRunListeners()
-
setAlwaysRunListeners
void setAlwaysRunListeners(boolean alwaysRun)
-
setExecutorFactory
void setExecutorFactory(IExecutorFactory factory)
-
getExecutorFactory
IExecutorFactory getExecutorFactory()
-
getInjectorFactory
IInjectorFactory getInjectorFactory()
-
setInjectorFactory
void setInjectorFactory(IInjectorFactory factory)
-
-