Uses of Interface
org.jbehave.core.steps.InjectableStepsFactory
-
Packages that use InjectableStepsFactory Package Description org.jbehave.core org.jbehave.core.configuration org.jbehave.core.embedder org.jbehave.core.steps -
-
Uses of InjectableStepsFactory in org.jbehave.core
Methods in org.jbehave.core that return InjectableStepsFactory Modifier and Type Method Description InjectableStepsFactory
ConfigurableEmbedder. stepsFactory()
Methods in org.jbehave.core with parameters of type InjectableStepsFactory Modifier and Type Method Description void
ConfigurableEmbedder. useStepsFactory(InjectableStepsFactory stepsFactory)
-
Uses of InjectableStepsFactory in org.jbehave.core.configuration
Methods in org.jbehave.core.configuration that return InjectableStepsFactory Modifier and Type Method Description InjectableStepsFactory
AnnotationBuilder. buildStepsFactory(Configuration configuration)
Builds theInjectableStepsFactory
using annotationUsingSteps
found in the annotated object instance and the configuration provided -
Uses of InjectableStepsFactory in org.jbehave.core.embedder
Fields in org.jbehave.core.embedder declared as InjectableStepsFactory Modifier and Type Field Description protected InjectableStepsFactory
Embedder. stepsFactory
Methods in org.jbehave.core.embedder that return InjectableStepsFactory Modifier and Type Method Description InjectableStepsFactory
Embedder. stepsFactory()
Methods in org.jbehave.core.embedder with parameters of type InjectableStepsFactory Modifier and Type Method Description void
Embedder. useStepsFactory(InjectableStepsFactory stepsFactory)
Constructors in org.jbehave.core.embedder with parameters of type InjectableStepsFactory Constructor Description StoryManager(Configuration configuration, InjectableStepsFactory stepsFactory, EmbedderControls embedderControls, EmbedderMonitor embedderMonitor, ExecutorService executorService, PerformableTree performableTree, StoryTimeouts.TimeoutParser... parsers)
-
Uses of InjectableStepsFactory in org.jbehave.core.steps
Classes in org.jbehave.core.steps that implement InjectableStepsFactory Modifier and Type Class Description class
AbstractStepsFactory
An abstract implementation ofInjectableStepsFactory
that is provided by concrete subclasses Object instances which contain the candidate steps methods.class
CompositeStepsFactory
AnInjectableStepsFactory
that composesCandidateSteps
created from other factories.class
InstanceStepsFactory
AnInjectableStepsFactory
that is provided Object instances.class
ProvidedStepsFactory
AnInjectableStepsFactory
that is provided with theCandidateSteps
instances.class
ScanningStepsFactory
AnInjectableStepsFactory
that scans for classes in the classpath.Methods in org.jbehave.core.steps with parameters of type InjectableStepsFactory Modifier and Type Method Description protected StepCandidate
AbstractCandidateSteps. createCandidate(String stepPatternAsString, int priority, StepType stepType, Method method, Class<?> type, InjectableStepsFactory stepsFactory)
Constructors in org.jbehave.core.steps with parameters of type InjectableStepsFactory Constructor Description CompositeStepsFactory(InjectableStepsFactory... stepsFactories)
MethodReturningConverter(Method method, Class<?> stepsType, InjectableStepsFactory stepsFactory)
StepCandidate(String patternAsString, int priority, StepType stepType, Method method, Class<?> stepsType, InjectableStepsFactory stepsFactory, Keywords keywords, StepMatcher stepMatcher, String parameterPrefixString, StepCreator stepCreator)
StepCandidate(String patternAsString, int priority, StepType stepType, Method method, Class<?> stepsType, InjectableStepsFactory stepsFactory, StepsContext stepsContext, Keywords keywords, StepPatternParser stepPatternParser, ParameterConverters parameterConverters, ParameterControls parameterControls)
StepCreator(Class<?> stepsType, InjectableStepsFactory stepsFactory, StepsContext stepsContext, ParameterConverters parameterConverters, ParameterControls parameterControls, StepMatcher stepMatcher, StepMonitor stepMonitor)
Steps(Configuration configuration, Class<?> type, InjectableStepsFactory stepsFactory)
Creates Steps with given custom configuration and a steps instance type containing the candidate step methods.StepsInstanceNotFound(Class<?> type, InjectableStepsFactory stepsFactory)
-