Interface Filter
public interface Filter
A filter is used by the FilteringObserver to decide whether or not a content
change should be forwarded.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanexcludes(@NotNull NodeState root, @NotNull CommitInfo info) Whether or not to exclude a particular content change from being forwarded to downstream observers.
-
Method Details
-
excludes
Whether or not to exclude a particular content change from being forwarded to downstream observers.- Parameters:
root- the new root stateinfo- the associated CommitInfo- Returns:
- true to exclude this content change (not forward), false to include it (forward)
-