Uses of Class
gudusoft.gsqlparser.nodes.TParameterDeclarationList

Packages that use TParameterDeclarationList
gudusoft.gsqlparser.nodes   
gudusoft.gsqlparser.stmt   
gudusoft.gsqlparser.stmt.oracle   
 

Uses of TParameterDeclarationList in gudusoft.gsqlparser.nodes
 

Methods in gudusoft.gsqlparser.nodes that return TParameterDeclarationList
 TParameterDeclarationList TCreateFunctionSqlNode.getParameters()
           
 TParameterDeclarationList TCreateProcedureSqlNode.getParameters()
           
 

Methods in gudusoft.gsqlparser.nodes with parameters of type TParameterDeclarationList
 void TParseTreeVisitor.postVisit(TParameterDeclarationList node)
           
 void TParseTreeVisitor.preVisit(TParameterDeclarationList node)
           
 void TCreateFunctionSqlNode.setParameters(TParameterDeclarationList parameters)
           
 void TCreateProcedureSqlNode.setParameters(TParameterDeclarationList parameters)
           
 

Uses of TParameterDeclarationList in gudusoft.gsqlparser.stmt
 

Methods in gudusoft.gsqlparser.stmt that return TParameterDeclarationList
 TParameterDeclarationList TStoredProcedureSqlStatement.getParameterDeclarations()
           
 

Methods in gudusoft.gsqlparser.stmt with parameters of type TParameterDeclarationList
 void TStoredProcedureSqlStatement.setParameterDeclarations(TParameterDeclarationList parameterDeclarations)
           
 

Uses of TParameterDeclarationList in gudusoft.gsqlparser.stmt.oracle
 

Methods in gudusoft.gsqlparser.stmt.oracle that return TParameterDeclarationList
 TParameterDeclarationList TPlsqlCursorDeclStmt.getCursorParameterDeclarations()
          List of cursor parameter declaration, which is represented by TParameterDeclaration.
 TParameterDeclarationList TPlsqlRecordTypeDefStmt.getFieldDeclarations()
          List of field declared in this record.
 

Methods in gudusoft.gsqlparser.stmt.oracle with parameters of type TParameterDeclarationList
 void TPlsqlCursorDeclStmt.setCursorParameterDeclarations(TParameterDeclarationList cursorParameterDeclarations)