Uses of Interface
provided.utils.logic.ILogicalVisitor
Packages that use ILogicalVisitor
Package
Description
Visitor design pattern hosts and visitors that model Boolean logical operations
Implementations of logical hosts that represent specific
compound logical operations on other logical hosts.
-
Uses of ILogicalVisitor in provided.utils.logic
Methods in provided.utils.logic with parameters of type ILogicalVisitorModifier and TypeMethodDescription<R, P> R
ILogicalHost.execute(ILogicalVisitor<R,P> vis, P param)
Call the appropriate case on the given visitor corresponding to the current state of the host. -
Uses of ILogicalVisitor in provided.utils.logic.impl
Methods in provided.utils.logic.impl with parameters of type ILogicalVisitorModifier and TypeMethodDescription<R, P> R
LogicalAndHost.execute(ILogicalVisitor<R,P> vis, P param)
<R, P> R
LogicalNotHost.execute(ILogicalVisitor<R,P> vis, P param)
<R, P> R
LogicalOrHost.execute(ILogicalVisitor<R,P> vis, P param)
<R, P> R
LogicalXOrHost.execute(ILogicalVisitor<R,P> vis, P param)