Package | Description |
---|---|
oracle.javatools.db.plsql |
Classes for dealing with PL/SQL objects.
|
Modifier and Type | Class and Description |
---|---|
class |
Function
Representation of a PL/SQL Function.
|
class |
Package
Representation of a PL/SQL Package Spec
|
class |
PackageBody
Representation of a PL/SQL Package Body
|
class |
PlSqlMethod
Representation of a method within a
Type . |
class |
PlSqlSchemaObject
Abstract superclass of all Schema level PL/SQL objects (ie
PlSqlSourceObjects )
other than Procedure and Function as they extend PlSqlSubProgram . |
class |
PlSqlSchemaObjectBody
Abstract superclass of
PackageBody and TypeBody . |
class |
PlSqlSchemaObjectSpec
|
class |
PlSqlSubProgram
A representation of a PL/SQL procedure or function.
|
class |
Procedure
Representation of a PL/SQL Procedure.
|
class |
Trigger
Representation of a Database Trigger
|
class |
Type
Representation of a PL/SQL Object Type.
|
class |
TypeBody
Representation of a Type Body
|
Modifier and Type | Method and Description |
---|---|
PlSqlBlock[] |
PlSqlSchemaObject.getBlocks() |
PlSqlBlock[] |
PlSqlBlock.getBlocks()
Get method for the Blocks property
|
PlSqlBlock[] |
PlSqlSourceObject.getBlocks() |
PlSqlBlock[] |
Procedure.getBlocks() |
Modifier and Type | Method and Description |
---|---|
void |
PlSqlBlock.addBlock(PlSqlBlock block)
Adds the given PlSqlBlock to the Blocks property array
|
static PlSqlSubProgram |
PlSqlUtilCore.findPlSqlSubProgram(java.lang.String callSignature,
PlSqlBlock block)
Finds the PlSqlSubProgram of the given signature in the given PlSqlBlock.
|
protected abstract PlSqlSubProgram |
PlSqlUtilCore.findPlSqlSubProgramImpl(java.lang.String callSignature,
PlSqlBlock block)
|
void |
PlSqlBlock.setBlocks(PlSqlBlock[] blocks)
Set method for the Blocks property
|