Business Components

Uses of Interface
oracle.jbo.RowSet

Packages that use.*
PackageDescription
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.html   
oracle.jbo.html.databeans Contains implementation classes for predefined Web-enabled JavaBeans which can access and display data from the data source. 
oracle.jbo.html.jsp.datatags   
oracle.jbo.server Contains the implementation of middle tier components. 
oracle.jbo.xsql   
oracle.jdeveloper.html Contains classes for generating HTML code. 
 

Uses of RowSet in oracle.jbo
 

Subinterfaces of RowSet in oracle.jbo
TypeName
 interface ViewObject
          Defines the presentation of the Entity Objects selected by an SQL statement.
 

Methods in oracle.jbo that return RowSet
TypeName
 RowSet RowSetIterator.getRowSet()
          Gets the row set that this iterator belongs to.
 RowSet[] RowSetIterator.getDetailRowSets()
          Gets all detail row sets linked to the master row set.
 RowSet RowSetIterator.createDetailRowSet(java.lang.String voName, java.lang.String viewLinkDefName)
          Creates a detail row set.
 RowSet ViewObject.createRowSet(java.lang.String name)
          Creates and returns a new (secondary) Row Ret for this View Object.
 RowSet[] ViewObject.getRowSets()
          Gets all Row Sets that belong to this View Object.
 RowSet ViewObject.findRowSet(java.lang.String rsName)
          Gets the named Row Set that was created at runtime for this View Object.
 

Constructors in oracle.jbo with parameters of type RowSet
TypeName
RowNotFoundException(RowSet rs, java.lang.Object hdl)
           
ViewLinkAlreadyExistsException(ViewLink vl, RowSetIterator masterRSI, RowSet detailRowSet)
          Constructs a new instance.
 

Uses of RowSet in oracle.jbo.html
 

Methods in oracle.jbo.html that return RowSet
TypeName
 RowSet DataSource.getRowSet()
          Return the RowSet instance of the ViewObject bind to this datasource.
 RowSet DataSourceImpl.getRowSet()
           
 

Methods in oracle.jbo.html with parameters of type RowSet
TypeName
static java.lang.String DataSourceImpl.getAttributeLabel(RowSet rs, AttributeDef aDef)
           
 

Uses of RowSet in oracle.jbo.html.databeans
 

Methods in oracle.jbo.html.databeans with parameters of type RowSet
TypeName
 void EditCurrentRecord.setRowSet(RowSet aQuery)
          Deprecated. Deprecated since 5.0. RowSet is now defined with the DataSource
 

Uses of RowSet in oracle.jbo.html.jsp.datatags
 

Fields in oracle.jbo.html.jsp.datatags declared as RowSet
TypeName
protected  RowSet RowsetIterateTag.rs
           
protected  RowSet RowTag.rs
           
 

Methods in oracle.jbo.html.jsp.datatags that return RowSet
TypeName
 RowSet RowTag.getRowSet()
           
 

Uses of RowSet in oracle.jbo.server
 

Classes in oracle.jbo.server that implement RowSet
TypeName
 class ViewObjectImpl
          The implementation of the ViewObject interface, the middle-tier class that manages database queries and the view rows that result from executing queries.
 class ViewRowSetImpl
          The middle-tier class that manages collections of view rows that result from executing a query.
 

Methods in oracle.jbo.server that return RowSet
TypeName
protected  RowSet ViewRowImpl.findAssociatedObjects(java.lang.String name)
          Finds Objects in a ViewRowSetImpl that follow the given association.
 RowSet ViewObjectImpl.getRowSet()
          Returns the View Object as a RowSet object.
 RowSet[] ViewObjectImpl.getDetailRowSets()
          Returns an array of all detail row sets for this row set iterator.
 RowSet ViewObjectImpl.createDetailRowSet(java.lang.String rsName, java.lang.String linkDefName)
          Creates and returns an new detail row set for this row set iterator.
 RowSet ViewObjectImpl.createRowSet(java.lang.String name)
          Creates and returns a new (secondary) row set for this View Object.
 RowSet[] ViewObjectImpl.getRowSets()
          Get all Row Sets that belong to this view object.
 RowSet ViewObjectImpl.findRowSet(java.lang.String rsName)
           
 RowSet ViewRowSetImpl.getRowSet()
          Implements RowSetIterator.getRowSet.
 RowSet[] ViewRowSetImpl.getDetailRowSets()
          Returns an array of all detail row sets for this row set iterator.
 RowSet ViewRowSetImpl.createDetailRowSet(java.lang.String rsName, java.lang.String linkDefName)
          Creates and returns an new detail row set for this row set iterator.
 RowSet ViewRowSetIteratorImpl.getRowSet()
          Returns this row set iterator's row set (interface).
 RowSet ViewRowSetIteratorImpl.createDetailRowSet(java.lang.String rsName, java.lang.String linkDefName)
          Creates and returns an new detail row set for this row set iterator.
 RowSet[] ViewRowSetIteratorImpl.getDetailRowSets()
          Returns an array of all detail row sets for this row set iterator.
 

Methods in oracle.jbo.server with parameters of type RowSet
TypeName
protected  void ViewRowSetIteratorImpl.addDetailViewRowSet(RowSet detailRowSet)
          ##INTERNAL##
protected  void ViewRowSetIteratorImpl.removeDetailViewRowSet(RowSet detailRowSet)
          ##INTERNAL##
 

Uses of RowSet in oracle.jbo.xsql
 

Methods in oracle.jbo.xsql with parameters of type RowSet
TypeName
 void ViewObject.handleWhereIfPresentForRowSet(RowSet rs)
           
 

Uses of RowSet in oracle.jdeveloper.html
 

Fields in oracle.jdeveloper.html declared as RowSet
TypeName
protected  RowSet PickList.qView
           
 

Methods in oracle.jdeveloper.html that return RowSet
TypeName
 RowSet DataWebBeanImpl.getRowSet()
          Returns the RowSet of the View Object used by the Web Bean object.
 RowSet DataWebBean.getRowSet()
          Returns the RowSet of the View Object used by the Web Bean object.
 

Methods in oracle.jdeveloper.html with parameters of type RowSet
TypeName
 void DataWebBeanImpl.setRowSet(RowSet aQuery)
          Deprecated. Deprecated since 5.0. RowSet is now defined with the DataSource
 java.lang.String DataWebBeanImpl.getAttributeLabel(RowSet rs, AttributeDef aDef)
          Utility method for getting the attribute's label , the label is first located in the AttributeDEf and then in the RowSet VO's attribute list.
protected  java.lang.String HTMLFieldRendererImpl.getHTMLValue(Row row, RowSet rs, java.lang.String attrName)
           
 void DataWebBean.setRowSet(RowSet aQuery)
          Internal: Applications should not use this method.
 void PickListContext.setDataSourceInfo(RowSet qView)
           
 void PickList.setDataSourceInfo(RowSet qView)
          Defines the data source information for the picklist
 


Business Components