Business Components

Uses of Interface
oracle.jbo.AttributeList

Packages that use AttributeList
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.common Contains the implementation of components shared by thin clients and the middle tier. 
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of AttributeList in oracle.jbo
 

Subinterfaces of AttributeList in oracle.jbo
 interface Row
          Defines middle-tier access to table rows.
 

Classes in oracle.jbo that implement AttributeList
 class Key
          A primary, foreign, or composite row identifier.
 class ViewCriteriaRow
          An array containing criteria for the individual attributes of a View Object's WHERE clause.
 

Uses of AttributeList in oracle.jbo.common
 

Constructors in oracle.jbo.common with parameters of type AttributeList
PiggybackRowEntry.PiggybackRowEntry(ObjectMarshaller marshaller, int type, int rvId, int rowIndex, AttributeList row, java.lang.Object rowHandle, int[] changedColumns)
           
 

Uses of AttributeList in oracle.jbo.server
 

Subinterfaces of AttributeList in oracle.jbo.server
 interface Entity
          Defines the middle-tier representation of database rows.
 

Classes in oracle.jbo.server that implement AttributeList
 class AttributeListImpl
          The middle-tier manager for name/value pairs.
 class EJBEntityImpl
           
 class EntityImpl
          This class implements the middle-tier representations of database rows.
 class RowImpl
          Provides the internal access mechanism for ViewRow and Entity row objects.
 class ViewRowImpl
          Presents the logical view of a Row returned from the database.
 

Methods in oracle.jbo.server with parameters of type AttributeList
protected abstract  void RowImpl.create(AttributeList nameValuePair)
          This method is called to let subclasses of RowImpl to set programmatic default values for attributes.
protected  void EntityImpl.create(AttributeList nameValuePair)
          This method should be subclassed to supply programmatic default values to various attributes of a new Entity Object.
 EntityImpl NullDBTransactionImpl.createEntityInstance(EntityDefImpl entityDef, AttributeList al)
          Implementation of the DBTransaction interface.
 EntityImpl NullDBTransactionImpl.createEntityInstance(java.lang.String entityDefName, AttributeList al)
          Implementation of the DBTransaction interface.
 EntityImpl DBTransactionImpl.createEntityInstance(EntityDefImpl entityDef, AttributeList al)
           
 EntityImpl DBTransactionImpl.createEntityInstance(java.lang.String entityDefName, AttributeList al)
           
 EntityImpl DBTransaction.createEntityInstance(EntityDefImpl entityDef, AttributeList al)
          Creates an EntityImpl instance based on the given defintion.
 EntityImpl DBTransaction.createEntityInstance(java.lang.String entityDefName, AttributeList al)
          Creates an EntityImpl instance based on the named defintion.
 ViewRowImpl ViewObjectImpl.createInstance(ViewRowSetImpl viewRowSet, AttributeList attrValList)
          Creates a view row instance.
protected  void ViewRowImpl.create(AttributeList nvp)
          Initialization method to be over-ridden in generated code for custom defaulting.
 Key EntityDefImpl.createKey(AttributeList al)
          Given a set of name-value pairs, creates a Primary key object for this entity.
protected  EntityImpl EntityDefImpl.createInstance(DBTransaction txn, AttributeList al)
          Instantiate an instance of the Entity.
 


Business Components