Uses of Interface
adams.flow.core.actorfilter.ActorFilter
-
Packages that use ActorFilter Package Description adams.flow.core adams.flow.core.actorfilter -
-
Uses of ActorFilter in adams.flow.core
Methods in adams.flow.core with parameters of type ActorFilter Modifier and Type Method Description static List<Actor>
ActorUtils. enumerate(Actor actor, ActorFilter filter)
Enumerates all children of the given actor (depth-first search).protected static void
ActorUtils. enumerate(Actor actor, List<Actor> children, ActorFilter filter)
Enumerates all children of the given actor (depth-first search). -
Uses of ActorFilter in adams.flow.core.actorfilter
Classes in adams.flow.core.actorfilter that implement ActorFilter Modifier and Type Class Description class
AcceptAll
Accepts any actor.class
ExactMatch
Accepts actor classes that are in the supplied list of classes.class
Invert
Inverts the matching sense of the base filter.class
Match
Accepts any actor that is compatible with the specified classes (subclasses or implementing interface).class
SuperclassOrInterface
Accepts actor classes that either implement the interface(s) or are derived from the superclass(es).Fields in adams.flow.core.actorfilter declared as ActorFilter Modifier and Type Field Description protected ActorFilter
Invert. m_Filter
the base filter.Constructors in adams.flow.core.actorfilter with parameters of type ActorFilter Constructor Description Invert(ActorFilter filter)
Initializes the filter.
-