Business Components

Uses of Interface
oracle.jbo.RowSet

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

Uses of RowSet in oracle.jbo
 

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

Methods in oracle.jbo that return RowSet
 RowSet ViewObject.createRowSet(java.lang.String name)
          Creates and returns a new (secondary) row set for this View Object.
 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.
 

Constructors in oracle.jbo with parameters of type RowSet
ViewLinkAlreadyExistsException.ViewLinkAlreadyExistsException(ViewLink vl, RowSetIterator masterRSI, RowSet detailRowSet)
          Constructs a new instance.
 

Uses of RowSet in oracle.jbo.html.databeans
 

Methods in oracle.jbo.html.databeans with parameters of type RowSet
 void JSEditCurrentRecord.setRowSet(RowSet aQuery)
          Internal: Applications should not use this method.
 void EditCurrentRecord.setRowSet(RowSet aQuery)
          Internal: Applications should not use this method.
 

Uses of RowSet in oracle.jbo.server
 

Classes in oracle.jbo.server that implement RowSet
 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
 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.
 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 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.
protected  RowSet ViewRowImpl.findAssociatedObjects(java.lang.String name)
          Find Objects in a ViewRowSetImpl that follow the given association.
 

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

Uses of RowSet in oracle.jdeveloper.html
 

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

Methods in oracle.jdeveloper.html that return RowSet
 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
 void DataWebBeanImpl.setRowSet(RowSet aQuery)
          Internal: Applications should not use this method.
 Row DataWebBeanImpl.getRowFromKey(RowSet rs, java.lang.String sKey)
           
 void DataWebBean.setRowSet(RowSet aQuery)
          Internal: Applications should not use this method.
 java.lang.String HTMLFieldRendererImpl.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 java.lang.String LOVField.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 void PickList.setDataSourceInfo(RowSet qView, java.lang.String labelAttr, java.lang.String dataAttr)
          Defines the data source information for the picklist
 java.lang.String PickList.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 java.lang.String ReadOnlyField.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 java.lang.String TextArea.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 java.lang.String DateField.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 java.lang.String HTMLFieldRenderer.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
          This method is called when the field renderers are being used from the Tag library and from the DataWebBeans.
 java.lang.String HiddenField.renderToString(HTMLRenderingContext ctx, RowSet rs, Row row, java.lang.String sAttribute)
           
 


Business Components