summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/yql/OperatorVisitor.java
blob: 73c3612c1c902b2db1fa96e2b05d670bf7577e6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.yql;

interface OperatorVisitor {

    <T extends Operator> boolean enter(OperatorNode<T> node);

    <T extends Operator> void exit(OperatorNode<T> node);

}