001package gudusoft.gsqlparser.nodes.couchbase;
002
003import gudusoft.gsqlparser.nodes.TParseTreeVisitor;
004
005public class TCollectionCondition extends TCollPredBase {
006
007    private ECollectionType collectionType;
008
009    public ECollectionType getCollectionType() {
010        return collectionType;
011    }
012
013    public void init(Object arg1, Object arg2, Object arg3){
014        collectionType = (ECollectionType)arg1;
015        super.init(arg2,arg3);
016    }
017
018    public void accept(TParseTreeVisitor v){
019        v.preVisit(this);
020        v.postVisit(this);
021    }
022
023    public void acceptChildren(TParseTreeVisitor v) {
024        v.preVisit(this);
025        v.postVisit(this);
026    }
027
028}