Class FilteringComposer<C extends Candidate,I extends CompositionComponent<C>,R extends Result>
- java.lang.Object
-
- org.processmining.specpp.componenting.system.link.AbstractBaseClass
-
- org.processmining.specpp.base.impls.RecursiveComposer<C,I,R>
-
- org.processmining.specpp.base.impls.FilteringComposer<C,I,R>
-
- All Implemented Interfaces:
java.util.function.Consumer<C>,Composer<C,I,R>,FullComponentSystemUser,ComposerComponent<C,I,R>,HasComponentCollection,IsGlobalProvider,UsesGlobalComponentSystem,UsesLocalComponentSystem,Initializable
- Direct Known Subclasses:
ConstrainingFilteringPlaceComposer
public abstract class FilteringComposer<C extends Candidate,I extends CompositionComponent<C>,R extends Result> extends RecursiveComposer<C,I,R>
-
-
Field Summary
-
Fields inherited from class org.processmining.specpp.base.impls.RecursiveComposer
childComposer
-
-
Constructor Summary
Constructors Constructor Description FilteringComposer(ComposerComponent<C,I,R> childComposer)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidaccept(C c)Hook method which decides how to handle an incoming candidate.-
Methods inherited from class org.processmining.specpp.base.impls.RecursiveComposer
candidatesAreExhausted, forward, generateResult, getIntermediateResult, isFinished
-
Methods inherited from class org.processmining.specpp.componenting.system.link.AbstractBaseClass
collectTransitiveSubcomponents, getComponentCollection, getSubComponents, globalComponentSystem, init, initSelf, localComponentSystem, postSubComponentInit, preSubComponentInit, registerSubComponent, unregisterSubComponent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.processmining.specpp.componenting.system.FullComponentSystemUser
collectTransitiveSubcomponents, connectLocalComponentSystem, getComponentCollection, registerSubComponent, unregisterSubComponent
-
Methods inherited from interface org.processmining.specpp.traits.Initializable
init
-
Methods inherited from interface org.processmining.specpp.componenting.traits.UsesGlobalComponentSystem
globalComponentSystem
-
Methods inherited from interface org.processmining.specpp.componenting.traits.UsesLocalComponentSystem
bridgeToChildren, localComponentSystem
-
-
-
-
Constructor Detail
-
FilteringComposer
public FilteringComposer(ComposerComponent<C,I,R> childComposer)
-
-
Method Detail
-
accept
public abstract void accept(C c)
Description copied from interface:ComposerHook method which decides how to handle an incoming candidate. The internal logic decides whether the candidate is eventually added to the current composition.- Specified by:
acceptin interfaceComposer<C extends Candidate,I extends CompositionComponent<C>,R extends Result>- Specified by:
acceptin interfacejava.util.function.Consumer<C extends Candidate>- Specified by:
acceptin classRecursiveComposer<C extends Candidate,I extends CompositionComponent<C>,R extends Result>- Parameters:
c- the candidate that has been offered to this composer
-
-