| 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK 11g Release 2 (11.1.2.3.0) E17493-04  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
  
oracle.javatools.db.AbstractDBObject
      
oracle.javatools.db.AbstractBuildableObject
          
oracle.javatools.db.AbstractSystemObject
              
oracle.javatools.db.AbstractSchemaObject
                  
oracle.javatools.db.PlSql
                      
oracle.javatools.db.SpecPlSql
Deprecated. use PlSqlSchemaObjectSpec instead
@Deprecated
public abstract class SpecPlSql
| Nested Class Summary | 
|---|
| Nested classes/interfaces inherited from class oracle.javatools.db.AbstractDBObject | 
|---|
AbstractDBObject.ChildSupport, AbstractDBObject.ListenerSupport | 
| Field Summary | 
|---|
| Fields inherited from class oracle.javatools.db.PlSql | 
|---|
BLOCK_TYPE | 
| Fields inherited from interface oracle.javatools.db.DBObject | 
|---|
COMMENT | 
| Constructor Summary | |
|---|---|
protected | 
SpecPlSql()Deprecated.  | 
protected | 
SpecPlSql(java.lang.String name, Schema schema)Deprecated.  | 
| Method Summary | |
|---|---|
 void | 
addAttribute(int index, PlSqlAttribute att)Deprecated. Adds one attribute to this object type at the given index.  | 
 void | 
addAttribute(PlSqlAttribute att)Deprecated. Adds one attribute to this object type.  | 
 void | 
addMethod(int index, PlSqlMethod method)Deprecated. Adds one method to this object type at the given index.  | 
 void | 
addMethod(PlSqlMethod method)Deprecated. Adds one method to this object type.  | 
protected  void | 
copyToImpl(AbstractDBObject copy, DBObject copyParent, IDPolicy idPolicy)Deprecated. Implementation method for making a copy of this object.  | 
protected  boolean | 
equalsImpl(AbstractDBObject target)Deprecated. Equals implementation for testing equality with another AbstractDBObject.  | 
 PlSqlAttribute | 
getAttribute(java.lang.String name)Deprecated. Retrieves one attribute by name.  | 
 PlSqlAttribute[] | 
getAttributes()Deprecated. Retrieves the list of attributes contained in this object type.  | 
 java.lang.String | 
getBodySource()Deprecated.  | 
 PlSqlInterrogator | 
getBodySourceInterrogator()Deprecated.  | 
 PlSqlMethod | 
getMethod(java.lang.String name)Deprecated. Retrieves one method by name.  | 
 PlSqlMethod[] | 
getMethods()Deprecated. Retrieves the list of methods contained in this object type.  | 
 void | 
removeAttribute(PlSqlAttribute att)Deprecated. Removes an attribute from this object type.  | 
 void | 
removeMethod(PlSqlMethod method)Deprecated. Removes an method from this object type.  | 
 void | 
setAttributes(PlSqlAttribute[] newAttribs)Deprecated. Sets the entire list of attributes, replacing any that have previously been added.  | 
 void | 
setBodySource(java.lang.String body)Deprecated.  | 
 void | 
setMethods(PlSqlMethod[] newMethods)Deprecated. Sets the entire list of methods, replacing any that have previously been added.  | 
| Methods inherited from class oracle.javatools.db.PlSql | 
|---|
getSource, getSourceInterrogator, isPlSql, setSource | 
| Methods inherited from class oracle.javatools.db.AbstractSchemaObject | 
|---|
getProperty, getSchema, setProperty, setSchema | 
| Methods inherited from class oracle.javatools.db.AbstractSystemObject | 
|---|
addObjectListener, addObjectListener, addObjectListener, fireObjectUpdated, getParent, removeObjectListener, removeObjectListener, removeObjectListener | 
| Methods inherited from class oracle.javatools.db.AbstractBuildableObject | 
|---|
checkInit, checkInit, getOwnedObjectsImpl, getProperties, getReferenceIDsImpl, needsInitialization | 
| Methods inherited from class oracle.javatools.db.AbstractDBObject | 
|---|
changeParent, compareToImpl, copyObject, copyTo, copyTo, copyTo, copyTo, equals, findOwnedObject, findOwnedObject, findOwnedObject, getChildSupport, getID, getName, getOwnedObjects, getOwnedObjects, getProperty, getReferenceIDs, hashCode, includeOwnedObject, includesType, includesType, removeThisAsParent, replaceReferenceIDs, setID, setName, setProperties, toString | 
| Methods inherited from class java.lang.Object | 
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Methods inherited from interface oracle.javatools.db.SchemaObject | 
|---|
addObjectListener, getSchema, removeObjectListener, setSchema | 
| Methods inherited from interface oracle.javatools.db.SystemObject | 
|---|
addObjectListener, addObjectListener, fireObjectUpdated, removeObjectListener, removeObjectListener | 
| Methods inherited from interface oracle.javatools.db.DBObject | 
|---|
copyTo, copyTo, copyTo, findOwnedObject, findOwnedObject, getID, getName, getOwnedObjects, getOwnedObjects, getParent, getReferenceIDs, getType, replaceReferenceIDs, setID, setName | 
| Methods inherited from interface oracle.javatools.util.DynamicPropertySet | 
|---|
getProperties, getProperty, getProperty, setProperties, setProperty | 
| Constructor Detail | 
|---|
protected SpecPlSql()
protected SpecPlSql(java.lang.String name,
                    Schema schema)
| Method Detail | 
|---|
protected void copyToImpl(AbstractDBObject copy,
                          DBObject copyParent,
                          IDPolicy idPolicy)
AbstractDBObjectcopyToImpl in class PlSqlcopy - the copy being created of this objectcopyParent - if this object is being copied underneath a parent, this parameter is the copy of the parent of this object, which will therefore need to be the parent of the copy of this object.idPolicy - the policy for copying the object's ID.protected boolean equalsImpl(AbstractDBObject target)
AbstractDBObjectequalsImpl in class PlSqlpublic void setAttributes(PlSqlAttribute[] newAttribs)
newAttribs - an array containing the new list of attributespublic PlSqlAttribute[] getAttributes()
public void addAttribute(PlSqlAttribute att)
att - the new attribute to add
public void addAttribute(int index,
                         PlSqlAttribute att)
index - the index to add the new attribute atatt - the new attribute to addpublic PlSqlAttribute getAttribute(java.lang.String name)
a - string containing the desired attribute namenullpublic void removeAttribute(PlSqlAttribute att)
att - the attribute to removepublic void setMethods(PlSqlMethod[] newMethods)
newMethods - an array containing the new list of methodspublic PlSqlMethod[] getMethods()
public void addMethod(PlSqlMethod method)
att - the new method to add
public void addMethod(int index,
                      PlSqlMethod method)
index - the index to add the new method atmethod - the new method to addpublic PlSqlMethod getMethod(java.lang.String name)
a - string containing the desired method namenullpublic void removeMethod(PlSqlMethod method)
method - the method to removepublic java.lang.String getBodySource()
public void setBodySource(java.lang.String body)
public PlSqlInterrogator getBodySourceInterrogator()
  | 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK 11g Release 2 (11.1.2.3.0) E17493-04  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||