/* Query -- Automatically generated by TreeBuilder (2024-10-27T16:48Z) */ package de.uni_freiburg.informatik.ultimate.crocotta.ast; import java.util.List; /** * Represents a query. */ public abstract class Query extends CrocottaQuery { private static final long serialVersionUID = 1L; private static final java.util.function.Predicate VALIDATOR = CrocottaQuery.VALIDATORS.get(Query.class); /** * The constructor taking initial values. */ public Query() { super(); assert VALIDATOR == null || VALIDATOR.test(this) : "Invalid Query: " + this; } /** * Returns a textual description of this object. */ public String toString() { return "Query"; } public List getOutgoingNodes() { List children = super.getOutgoingNodes(); return children; } public abstract void accept(CrocottaAstVisitor visitor); public abstract Query accept(CrocottaAstTransformer visitor); }