Update ASTSqlStatement.java
InternalApi annotation added
This commit is contained in:
@ -7,16 +7,22 @@
|
|||||||
|
|
||||||
package net.sourceforge.pmd.lang.plsql.ast;
|
package net.sourceforge.pmd.lang.plsql.ast;
|
||||||
|
|
||||||
|
import net.sourceforge.pmd.annotation.InternalApi;
|
||||||
|
|
||||||
public class ASTSqlStatement extends AbstractPLSQLNode {
|
public class ASTSqlStatement extends AbstractPLSQLNode {
|
||||||
|
|
||||||
private Type type;
|
private Type type;
|
||||||
|
|
||||||
public enum Type { COMMIT, ROLLBACK, SAVEPOINT, SET_TRANSACTION, LOCK_TABLE, MERGE }
|
public enum Type { COMMIT, ROLLBACK, SAVEPOINT, SET_TRANSACTION, LOCK_TABLE, MERGE }
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
@InternalApi
|
||||||
public ASTSqlStatement(int id) {
|
public ASTSqlStatement(int id) {
|
||||||
super(id);
|
super(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
@InternalApi
|
||||||
public ASTSqlStatement(PLSQLParser p, int id) {
|
public ASTSqlStatement(PLSQLParser p, int id) {
|
||||||
super(p, id);
|
super(p, id);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user