Package | Description |
---|---|
oracle.javatools.db.plsql |
Classes for dealing with PL/SQL objects.
|
Modifier and Type | Class and Description |
---|---|
class |
PlSqlAttribute
A representation of a Attribute within a
Type . |
Modifier and Type | Method and Description |
---|---|
PlSqlVariable |
PlSqlBlock.getVariable(java.lang.String name)
Gets a Variable of the given name
|
PlSqlVariable[] |
PlSqlSchemaObject.getVariables() |
PlSqlVariable[] |
PlSqlDatatype.getVariables()
Get method for the Variables property
|
PlSqlVariable[] |
PlSqlBlock.getVariables()
Get method for the Variables property
|
PlSqlVariable[] |
Type.getVariables()
Convenience method, overloads the superclass getVariables
but will return the same as getAttributes()
|
PlSqlVariable[] |
PlSqlSourceObject.getVariables() |
PlSqlVariable[] |
Procedure.getVariables() |
Modifier and Type | Method and Description |
---|---|
void |
PlSqlDatatype.addVariable(PlSqlVariable variable)
Adds the given PlSqlVariable to the Variables property array
|
void |
PlSqlBlock.addVariable(PlSqlVariable variable)
Adds the given PlSqlVariable to the Variables property array
|
void |
Type.addVariable(PlSqlVariable var)
Adds the given PlSqlVariable to the Attributes property array.
|
void |
PlSqlDatatype.setVariables(PlSqlVariable[] variables)
Set method for the Variables property
|
void |
PlSqlBlock.setVariables(PlSqlVariable[] variables)
Set method for the Variables property
|
void |
Type.setVariables(PlSqlVariable[] vars)
Convenience method, overloads the superclass setVariables
but each entry in the array must be a PlSqlAttribute or an IllegalArgumentExcption will
be thrown.
|