| 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 |
PlSqlMethod
Representation of a method within a
Type. |
class |
Procedure
Representation of a PL/SQL Procedure.
|
| Modifier and Type | Method and Description |
|---|---|
static PlSqlSubProgram |
PlSqlUtil.findPlSqlSubProgram(java.util.List<java.lang.String> names, PlSqlBlock block) |
static PlSqlSubProgram |
PlSqlUtil.findPlSqlSubProgram(java.lang.String callSignature, PlSqlBlock block) |
PlSqlSubProgram |
PlSqlBlock.getSubProgram(java.lang.String name)
Gets a SubProgram of the given name
|
PlSqlSubProgram[] |
Type.getSubPrograms()
Convenience method, overloads the superclass getSubPrograms but will return the same as getMethods()
|
PlSqlSubProgram[] |
PlSqlBlock.getSubPrograms()
Get method for the SubPrograms property
|
| Modifier and Type | Method and Description |
|---|---|
void |
Type.addSubProgram(PlSqlSubProgram subProgram)
Adds the given PlSqlSubProgram to the Methods property array.
|
void |
PlSqlBlock.addSubProgram(PlSqlSubProgram subProgram)
Adds the given PlSqlSubProgram to the SubPrograms property array
|
void |
Type.setSubPrograms(PlSqlSubProgram[] subPrograms)
Convenience method, overloads the superclass setSubPrograms but each entry in the array must be a PlSqlMethod or an IllegalArgumentExcption will be thrown.
|
void |
PlSqlBlock.setSubPrograms(PlSqlSubProgram[] subPrograms)
Set method for the SubPrograms property
|