app.cash.sqldelight.dialects.hsql.grammar.psi.impl.HsqlOverridesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hsql-dialect Show documentation
Show all versions of hsql-dialect Show documentation
The HSQL Dialect for SQLDelight
// This is a generated file. Not intended for manual editing.
package app.cash.sqldelight.dialects.hsql.grammar.psi.impl;
import java.util.List;
import org.jetbrains.annotations.*;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiElementVisitor;
import com.intellij.psi.util.PsiTreeUtil;
import static app.cash.sqldelight.dialects.hsql.grammar.psi.HsqlTypes.*;
import com.alecstrong.sql.psi.core.psi.SqlCompositeElementImpl;
import app.cash.sqldelight.dialects.hsql.grammar.psi.*;
public class HsqlOverridesImpl extends SqlCompositeElementImpl implements HsqlOverrides {
public HsqlOverridesImpl(ASTNode node) {
super(node);
}
public void accept(@NotNull HsqlVisitor visitor) {
visitor.visitOverrides(this);
}
@Override
public void accept(@NotNull PsiElementVisitor visitor) {
if (visitor instanceof HsqlVisitor) accept((HsqlVisitor)visitor);
else super.accept(visitor);
}
@Override
@Nullable
public HsqlBindParameter getBindParameter() {
return findChildByClass(HsqlBindParameter.class);
}
@Override
@Nullable
public HsqlColumnConstraint getColumnConstraint() {
return findChildByClass(HsqlColumnConstraint.class);
}
@Override
@Nullable
public HsqlGeneratedClause getGeneratedClause() {
return findChildByClass(HsqlGeneratedClause.class);
}
@Override
@Nullable
public HsqlInsertStmt getInsertStmt() {
return findChildByClass(HsqlInsertStmt.class);
}
@Override
@Nullable
public HsqlResultColumn getResultColumn() {
return findChildByClass(HsqlResultColumn.class);
}
@Override
@Nullable
public HsqlTypeName getTypeName() {
return findChildByClass(HsqlTypeName.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy