Update ASTSqlStatement.java

InternalApi annotation added
This commit is contained in:
zgrzyt93
2020-04-27 15:32:31 +02:00
committed by GitHub
parent ffd573e1b5
commit 08a430ed3f

View File

@ -7,16 +7,22 @@
package net.sourceforge.pmd.lang.plsql.ast;
import net.sourceforge.pmd.annotation.InternalApi;
public class ASTSqlStatement extends AbstractPLSQLNode {
private Type type;
public enum Type { COMMIT, ROLLBACK, SAVEPOINT, SET_TRANSACTION, LOCK_TABLE, MERGE }
@Deprecated
@InternalApi
public ASTSqlStatement(int id) {
super(id);
}
@Deprecated
@InternalApi
public ASTSqlStatement(PLSQLParser p, int id) {
super(p, id);
}