|
Oracle9i Business Components for Java API Reference Oracle9i Jdeveloper (9.0.4) B10391-01 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Row | |
oracle.jbo | Contains interfaces for client-side applications. |
oracle.jbo.client | |
oracle.jbo.common | Contains the implementation of components shared by thin clients and the middle tier. |
oracle.jbo.common.ws | |
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.html.struts11 | The struts11 package ... |
oracle.jbo.html.struts11.actions | |
oracle.jbo.server | Contains the implementation of middle tier components. |
oracle.jbo.server.ejb.facade | |
oracle.jbo.uicli.binding | Contains JClient classes that handle interaction with BC4J objects for various JClient bindings. |
oracle.jbo.uicli.jui | Contains JClient classes that implement binding of Swing controls with BC4J ViewObject, Attributes or Rows. |
oracle.jdeveloper.html | Contains classes for generating HTML code. |
Uses of Row in oracle.jbo |
Classes in oracle.jbo that implement Row | |
class |
ViewCriteriaRow An array containing criteria for the individual attributes of a View Object's WHERE clause. |
Methods in oracle.jbo that return Row | |
Row |
ViewCriteria.next() Steps forward, designating the next row as the current row. |
Row |
ViewCriteria.previous() Steps backward, designating the previous row as the current row. |
Row |
ViewCriteria.first() Designates the first row of the row set as the current row. |
Row |
ViewCriteria.last() Designates the last row of the row set as the current row. |
Row |
ViewCriteria.getRowAtRangeIndex(int index) Accesses a row through its index in the row set. |
Row |
ViewCriteria.getCurrentRow() Accesses the current row. |
Row |
ViewCriteria.createAndInitRow(AttributeList nvp) |
Row |
ViewCriteria.createRow() Creates a new Row object, but does not insert it into the row set. |
Row[] |
ViewCriteria.getAllRowsInRange() Extracts the rows in the range. |
Row |
ViewCriteria.getRow(Key key) Accesses a row through a unique key. |
Row[] |
ViewCriteria.findByKey(Key key, int maxNumOfRows) Finds and returns view rows that match the specified key. |
Row[] |
ViewCriteria.findByEntity(int eRowHandle, int maxNumOfRows) Finds and returns view rows that use the entity row, identified by the entity row handle, eRowHandle . |
Row[] |
RowSetIterator.getNextRangeSet() Gets the next set of rows in the range. |
Row[] |
RowSetIterator.getPreviousRangeSet() Gets the previous set of rows in the range. |
Row |
RowIterator.next() Gets the next row in the iterator. |
Row |
RowIterator.previous() Gets the previous row in the iterator. |
Row |
RowIterator.first() Gets the first row in the iterator. |
Row |
RowIterator.last() Gets the last row in the iterator. |
Row |
RowIterator.getRow(Key key) Accesses a row through a unique key. |
Row |
RowIterator.getRowAtRangeIndex(int index) Accesses a row through its index in the row set. |
Row |
RowIterator.getCurrentRow() Accesses the current row. |
Row |
RowIterator.createAndInitRow(AttributeList nvp) |
Row |
RowIterator.createRow() Creates a new Row object, but does not insert it into the row set. |
Row[] |
RowIterator.getAllRowsInRange() Extracts the rows in the range. |
Row[] |
RowIterator.findByKey(Key key, int maxNumOfRows) Finds and returns View rows that match the specified key. |
Row[] |
RowIterator.findByEntity(int eRowHandle, int maxNumOfRows) Finds and returns View rows that use the Entity row, identified by the Entity row handle, eRowHandle . |
Row |
RowEvent.getRow() Gets the row that has been modified. |
Row[] |
RangeRefreshEvent.getAllRowsInRange() Extracts the rows in the range. |
Row[] |
RangeEvent.getAllRowsInRange() Extracts the rows in the range. |
Row |
NavigationEvent.getRow() Identifies the row that is to become the current row. |
Row |
NavigationEvent.getPreviousRow() Identifies the row that was previously the current row. |
Row |
DMLException.getEntityRow() |
Methods in oracle.jbo with parameters of type Row | |
boolean |
ViewCriteria.setCurrentRow(Row row) Designates a given row as the current row. |
void |
ViewCriteria.insertRow(Row row) Adds a row to the row set, before the current row. |
int |
ViewCriteria.scrollRangeTo(Row row, int index) Scrolls the range to place a given row at a given row set index. |
void |
ViewCriteria.insertRowAtRangeIndex(int index, Row row) Adds a row to the row set at the given index. |
int |
ViewCriteria.getRangeIndexOf(Row row) Get the index of the given row relative to the beginning of the range. |
boolean |
RowIterator.setCurrentRow(Row row) Designates a given row as the current row. |
void |
RowIterator.insertRow(Row row) Adds a row to the row set, before the current row. |
int |
RowIterator.scrollRangeTo(Row row, int index) Scrolls the range to place a given row at a given row set index. |
void |
RowIterator.insertRowAtRangeIndex(int index, Row row) Adds a row to the row set at the given index. |
int |
RowIterator.getRangeIndexOf(Row row) Get the index of the given row relative to the beginning of the range. |
void |
RowDMLException.setEntityRow(Row row, java.lang.String defName) |
void |
RowDMLException.setEntityRow(Row row) |
void |
DMLException.setEntityRow(Row row) |
Constructors in oracle.jbo with parameters of type Row | |
UpdateEvent(RowSetIterator source, Row row, int rowIndex, int[] attrIndices) Creates an event when a row is modified. | |
RowEvent(NavigatableRowIterator source, Row row, int rowIndex) Creates an event when a row is modified, added, or deleted. | |
RowDMLException(int operation, java.lang.String stmt, java.lang.Exception ex, Row en, java.lang.String fullDefName) Creates an exception to be localized using CSMessageBundle and error code EXC_DML_POST_ENTITY . | |
RangeRefreshEvent(RowSetIterator source, int rangeStart, int rowCountInRange, Row[] rows) Creates a range refresh event. | |
NavigationEvent(NavigatableRowIterator source, Row previousRow, Row currentRow) Creates a navagation event when a new row becomes current. | |
NavigationEvent(NavigatableRowIterator source, Row previousRow, Row currentRow) Creates a navagation event when a new row becomes current. | |
InsertEvent(NavigatableRowIterator source, Row row, int rowIndex, int rowCountBefore, int rowCount) Creates an event for a row being inserted. | |
InsertDeleteEvent(NavigatableRowIterator source, Row row, int rowIndex, int rowCountBefore, int rowCount) Creates an event for a row being inserted or deleted. | |
DMLException(int operation, Row entityRow, int handle, java.lang.String stmt, java.lang.Exception ex) Creates an exception to be localized using CSMessageBundle and error code EXC_DML_POST_ENTITY . | |
DMLException(java.lang.Class resBundle, Row entityRow, int handle, java.lang.String errorCode, java.lang.Object[] params, java.lang.Exception ex) | |
DeleteEvent(NavigatableRowIterator source, Row row, int rowIndex, int rowCountBefore, int rowCount, boolean isRemoveFromTable) Creates an event for a row being deleted. |
Uses of Row in oracle.jbo.client |
Methods in oracle.jbo.client that return Row | |
static Row |
JboUtil.getRowFromKey(RowSet rs, java.lang.String sKey) Return a Row given a String representation of Key. |
Uses of Row in oracle.jbo.common |
Fields in oracle.jbo.common declared as Row | |
protected Row |
RowSetIteratorHelper.mCurrentRow |
Uses of Row in oracle.jbo.common.ws |
Methods in oracle.jbo.common.ws that return Row | |
Row[] |
WSRowSetIteratorBase.getNextRangeSet() |
Row[] |
WSRowSetIteratorBase.getPreviousRangeSet() |
Row |
WSRowSetIteratorBase.next() |
Row |
WSRowSetIteratorBase.previous() |
Row |
WSRowSetIteratorBase.first() |
Row |
WSRowSetIteratorBase.last() |
Row |
WSRowSetIteratorBase.getRow(Key key) |
Row |
WSRowSetIteratorBase.getRowAtRangeIndex(int index) |
Row |
WSRowSetIteratorBase.getCurrentRow() |
Row |
WSRowSetIteratorBase.createAndInitRow(AttributeList nvp) |
Row |
WSRowSetIteratorBase.createRow() |
Row[] |
WSRowSetIteratorBase.getAllRowsInRange() |
Row[] |
WSRowSetIteratorBase.findByKey(Key key, int maxNumOfRows) |
Row[] |
WSRowSetIteratorBase.findByEntity(int eRowHandle, int maxNumOfRows) |
Methods in oracle.jbo.common.ws with parameters of type Row | |
int |
WSViewObjectImpl.scrollRangeTo(Row row, int index) |
int |
WSRowSetIteratorImpl.scrollRangeTo(Row row, int index) |
boolean |
WSRowSetIteratorBase.setCurrentRow(Row row) |
void |
WSRowSetIteratorBase.insertRow(Row row) |
abstract int |
WSRowSetIteratorBase.scrollRangeTo(Row row, int index) |
void |
WSRowSetIteratorBase.insertRowAtRangeIndex(int index, Row row) |
int |
WSRowSetIteratorBase.getRangeIndexOf(Row row) |
int |
WSRowSetImpl.scrollRangeTo(Row row, int index) |
void |
WSDetailQuery.executeDetailQuery(Row[] masterRows) |
Uses of Row in oracle.jbo.html |
Methods in oracle.jbo.html that return Row | |
Row |
DataSourceImpl.getRowFromKey(java.lang.String sKey) |
Row |
DataSource.getRowFromKey(java.lang.String sKey) |
Row |
BC4JContext.getRow() Retrieve the row property value If the row has not been set explicitly, this method use the rowkey information from this BC4JContext to retrieve the row. |
Methods in oracle.jbo.html with parameters of type Row | |
static void |
HtmlServices.updateRowAttributesFromRequestParameters(DataSource ds, Row row, RequestParameters params) Internal: Applications should not use this method. |
static void |
HtmlServices.updateRowAttributesFromRequestParameters(ViewObject vo, Row row, RequestParameters params) Internal: Applications should not use this method. |
static void |
HtmlServices.setAttributeFromRequestParameters(Row row, AttributeDef attrDef, RequestParameters params, LocaleContext locale) Internal: Applications should not use this method. |
static void |
HtmlServices.setAttributeFromRequest(Row row, AttributeDef attrDef, javax.servlet.http.HttpServletRequest request, LocaleContext locale) Internal: Applications should not use this method. |
static java.lang.Object |
HtmlServices.getOrdObject(AttributeDef attrDef, OrdFileSource tempFile, Row row, ApplicationModule am, java.lang.String mimeType) |
static java.lang.String |
HtmlServices.getAttributeStringValue(Row row, AttributeDef aDef, LocaleContext localeContext) |
HTMLFieldRenderer |
DataSourceImpl.getEditFieldRenderer(javax.servlet.jsp.PageContext page, Row row, AttributeDef attrDef) Convenient method with the pageContext without the session to be use by tags |
HTMLFieldRenderer |
DataSourceImpl.getEditFieldRenderer(javax.servlet.jsp.PageContext page, javax.servlet.http.HttpSession session, Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataSourceImpl.getDisplayFieldRenderer(javax.servlet.jsp.PageContext page, Row row, AttributeDef attrDef) |
HTMLFieldRenderer |
DataSourceImpl.getDisplayFieldRenderer(javax.servlet.jsp.PageContext page, javax.servlet.http.HttpSession session, Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataSource.getEditFieldRenderer(javax.servlet.jsp.PageContext page, Row row, AttributeDef attrDef) |
HTMLFieldRenderer |
DataSource.getEditFieldRenderer(javax.servlet.jsp.PageContext page, javax.servlet.http.HttpSession session, Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataSource.getDisplayFieldRenderer(javax.servlet.jsp.PageContext page, Row row, AttributeDef attrDef) |
HTMLFieldRenderer |
DataSource.getDisplayFieldRenderer(javax.servlet.jsp.PageContext page, javax.servlet.http.HttpSession session, Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
void |
BC4JContext.setRow(Row row) Set the row property value |
Uses of Row in oracle.jbo.html.databeans |
Fields in oracle.jbo.html.databeans declared as Row | |
protected Row |
EditCurrentRecord.newRow Stores the new row when EditCurrentRecord is in INSERT mode. |
Methods in oracle.jbo.html.databeans with parameters of type Row | |
protected boolean |
RowSetBrowser.initializeNewTableRow(HTMLTableRow htmlRow, Row[] drows, int rowno, boolean isEven) |
protected java.lang.String |
JSLOV.getDataValueAt(Row[] drows, int row, AttributeDef[] dattrs, int attr) |
Uses of Row in oracle.jbo.html.jsp.datatags |
Fields in oracle.jbo.html.jsp.datatags declared as Row | |
protected Row |
RowTag.row |
protected Row |
DataTagBase.row |
Methods in oracle.jbo.html.jsp.datatags that return Row | |
static Row |
Utils.getRowFromAncestor(javax.servlet.jsp.tagext.Tag from, java.lang.String dataSourceName) |
Row |
RowTag.getRow() |
protected Row |
RowTag.getRowFromRequestParameters(DataSource ds, RequestParameters params) |
Row |
RowsetIterateTag.getRow() |
static Row |
DataTagBase.getRowFromContext(javax.servlet.jsp.tagext.Tag from, java.lang.String dataSourceName, DataSource dsIn) |
Methods in oracle.jbo.html.jsp.datatags with parameters of type Row | |
static void |
RowTag.updateRowAttributesFromRequestParameters(DataSource ds, Row row, javax.servlet.jsp.PageContext page, RequestParameters params) |
Uses of Row in oracle.jbo.html.struts11 |
Methods in oracle.jbo.html.struts11 with parameters of type Row | |
static java.lang.Object |
MultipartUtil.getOrdObject(AttributeDef attrDef, org.apache.struts.upload.FormFile file, Row row, ApplicationModule am) Get an interMedia object for the browser uploaded file. |
Uses of Row in oracle.jbo.html.struts11.actions |
Methods in oracle.jbo.html.struts11.actions with parameters of type Row | |
protected org.apache.struts.action.ActionErrors |
UpdateAction.validate(javax.servlet.http.HttpServletRequest request, BC4JContext context, org.apache.struts.action.ActionForm form, Row row) |
void |
UpdateAction.populateRow(BC4JContext context, org.apache.struts.action.ActionForm form, Row row) |
Uses of Row in oracle.jbo.server |
Subinterfaces of Row in oracle.jbo.server | |
interface |
Entity This interface is for BC4J Entity Objects. |
Classes in oracle.jbo.server that implement Row | |
class |
EJBEntityImpl |
class |
EntityImpl This class implements the middle-tier representations of database rows. |
class |
RowImpl Base class for Entity Rows and View Object Rows. |
class |
ViewRowImpl A View Object Row. |
Methods in oracle.jbo.server that return Row | |
Row |
ViewRowSetIteratorImpl.getRowAtRangeIndex(int index) Returns the row at range index index . |
Row |
ViewRowSetIteratorImpl.getRowAtRangeIndexInternal(int index) Internal: Applications should not use this method. |
Row |
ViewRowSetIteratorImpl.getRow(Key key) Returns the first row whose key matches key . |
Row |
ViewRowSetIteratorImpl.getRowFromHandle(java.lang.Object rowHandle) Internal: Applications should not use this method. |
Row[] |
ViewRowSetIteratorImpl.findByKey(Key key, int maxNumOfRows) Finds and returns view rows that match the specified key. |
Row |
ViewRowSetIteratorImpl.getCurrentRow() Returns the current row of the iterator. |
Row |
ViewRowSetIteratorImpl.first() Navigates to the first row in the row set. |
Row |
ViewRowSetIteratorImpl.last() Navigates to the last row in the row set. |
Row |
ViewRowSetIteratorImpl.next() Navigates to the next row in the row set. |
Row |
ViewRowSetIteratorImpl.previous() Navigates to the previous row in the row set. |
Row[] |
ViewRowSetIteratorImpl.getAllRowsInRangeInternal(boolean shouldEnsureRefreshed) |
Row[] |
ViewRowSetIteratorImpl.getAllRowsInRange() Returns an array of all rows in the iterator's range. |
Row[] |
ViewRowSetIteratorImpl.getNextRangeSet() |
Row[] |
ViewRowSetIteratorImpl.getPreviousRangeSet() |
Row |
ViewRowSetIteratorImpl.createAndInitRow(AttributeList initVals) |
Row |
ViewRowSetIteratorImpl.createRow() Creates a new view row. |
Row[] |
ViewRowSetIteratorImpl.findByEntity(int eRowHandle, int maxNumOfRows) |
Row |
ViewRowSetImpl.createAndInitRow(AttributeList initVals) |
Row |
ViewRowSetImpl.createRow() Creates a new view row. |
Row[] |
ViewRowSetImpl.getAllRowsInRange() Returns an array of all rows in the iterator's range. |
Row[] |
ViewRowSetImpl.getNextRangeSet() |
Row[] |
ViewRowSetImpl.getPreviousRangeSet() |
Row |
ViewRowSetImpl.getRowFromHandle(java.lang.Object rowHandle) Internal: Applications should not use this method. |
Row |
ViewRowSetImpl.getRow(Key key) Returns the first row whose key matches key . |
Row |
ViewRowSetImpl.getCurrentRow() Returns the current row of the iterator. |
Row |
ViewRowSetImpl.first() Navigates to the first row in the row set. |
Row |
ViewRowSetImpl.last() Navigates to the last row in the row set. |
Row |
ViewRowSetImpl.next() Navigates to the next row in the row set. |
Row |
ViewRowSetImpl.previous() Navigates to the previous row in the row set. |
Row |
ViewRowSetImpl.getRow(int index) Returns the row at absolute row index of index . |
Row |
ViewRowSetImpl.getRowAtRangeIndex(int index) Returns the row at range index index . |
protected Row[] |
ViewRowSetImpl.getRows(EntityImpl entity) Returns an array of view rows that use the specified entity row. |
Row[] |
ViewRowSetImpl.findByKey(Key key, int maxNumOfRows) Finds and returns View rows that match the specified key. |
Row[] |
ViewRowSetImpl.findByEntity(int eRowHandle, int maxNumOfRows) |
Row |
ViewObjectImpl.next() Navigates to the next row in the row set. |
Row |
ViewObjectImpl.previous() Navigates to the previous row in the row set. |
Row |
ViewObjectImpl.first() Navigates to the first row in the row set. |
Row |
ViewObjectImpl.last() Navigates to the last row in the row set. |
Row |
ViewObjectImpl.getRow(Key key) Returns the first row matching a given key. |
Row |
ViewObjectImpl.getRowAtRangeIndex(int index) Returns the row at a given range position. |
Row |
ViewObjectImpl.getRowFromHandle(java.lang.Object hdl) Internal: Applications should not use this method. |
Row |
ViewObjectImpl.getCurrentRow() Returns the current row of the iterator. |
Row |
ViewObjectImpl.createAndInitRow(AttributeList initVals) |
Row |
ViewObjectImpl.createRow() Creates a new view row. |
Row[] |
ViewObjectImpl.getAllRowsInRange() Returns an array of all rows in the iterator's range. |
Row[] |
ViewObjectImpl.getNextRangeSet() |
Row[] |
ViewObjectImpl.getPreviousRangeSet() |
Row[] |
ViewObjectImpl.findByKey(Key key, int maxNumOfRows) Finds and returns View rows that match the specified key. |
Row[] |
ViewObjectImpl.findByEntity(int eRowHandle, int maxNumOfRows) |
protected Row[] |
ViewObjectImpl.retrieveByKey(ViewRowSetImpl rs, Key key, int maxNumOfRows) |
protected Row[] |
QueryCollection.getRows(EntityImpl row) |
protected Row[] |
QueryCollection.getRows(Key ky) |
Row |
EntityRowSetImpl.createRow() |
Row |
ApplicationModuleImpl.getEntityRowFromHandle(int eRowHandle) Internal: Applications should not use this method. |
Methods in oracle.jbo.server with parameters of type Row | |
boolean |
ViewRowSetIteratorImpl.setCurrentRow(Row row) Indicates whether the cursor has been successfully moved to the row specified by row . |
int |
ViewRowSetIteratorImpl.getRangeIndexOf(Row row) Returns the range index of the row specified by row . |
int |
ViewRowSetIteratorImpl.scrollRangeTo(Row row, int index) Scrolls the range to a specific row. |
void |
ViewRowSetIteratorImpl.insertRow(Row row) Inserts the row into the row set. |
void |
ViewRowSetIteratorImpl.insertRowAtRangeIndex(int index, Row row) Inserts the row into the row set at the specified range index. |
void |
ViewRowSetIteratorImpl.fireRowUpdated(int rowIndex, Row row, int[] attrIndices) Fires the row updated event to its listeners. |
static RowSetIterator |
ViewRowSetIteratorImpl.findRSIForEntity(RowSetIterator[] rsis, Row eRow) |
void |
ViewRowSetImpl.execute(boolean forceFlag, boolean notifyFlag, Row[] masterRows) |
void |
ViewRowSetImpl.executeDetailQuery(Row[] masterRows) |
void |
ViewRowSetImpl.insertRowAt(int index, Row row) Inserts a view row at an absolute row index specified by index . |
int |
ViewRowSetImpl.scrollRangeTo(Row row, int index) Scrolls the range to a specific row. |
void |
ViewRowSetImpl.insertRow(Row row) Inserts the row into the row set. |
void |
ViewRowSetImpl.insertRowAtRangeIndex(int index, Row row) Inserts the row into the row set at the specified range index. |
int |
ViewRowSetImpl.getRangeIndexOf(Row row) Returns the range index of the row specified by row . |
boolean |
ViewRowSetImpl.setCurrentRow(Row row) Moves the iterator to the row specified by row . |
java.lang.Object[] |
ViewRowSetImpl.getParametersAsStorageTypes(Row[] masterRows) |
java.lang.Object[] |
ViewRowSetImpl.getParameters(boolean nullValueFlag, Row[] masterRows) |
void |
ViewObjectImpl.executeDetailQuery(Row[] masterRows) |
int |
ViewObjectImpl.scrollRangeTo(Row row, int index) Scrolls the range to a specified row. |
boolean |
ViewObjectImpl.setCurrentRow(Row row) Designates a given row as the current row. |
void |
ViewObjectImpl.insertRow(Row row) Inserts a row into the row set. |
void |
ViewObjectImpl.insertRowAtRangeIndex(int index, Row row) Inserts a row into the row set at the specified range position. |
int |
ViewObjectImpl.getRangeIndexOf(Row row) Returns the range index of a given row. |
protected void |
ViewObjectImpl.notifyRowInserted(ViewRowSetImpl vrs, Row viewRow, int rowIndex) This method is invoked by the framework when inserts are made to the given ViewRowSet for this ViewObject. |
protected void |
ViewObjectImpl.notifyRowDeleted(ViewRowSetImpl vrs, Row viewRow, int rowIndex) This method is invoked by the framework when a row is deleted from the given ViewRowSet for this ViewObject. |
protected void |
ViewObjectImpl.notifyRowUpdated(ViewRowSetImpl vrs, Row[] viewRows, int[] attrIndices) This method is invoked by the framework when updates are made to any attribute for rows in the given ViewRowSet for this ViewObject. |
static boolean |
EntityDefImpl.checkEntityLocked(Row en) Internal: Applications should not use this method. Called by BaseLobDomain to check for entity's locked state in local mode using reflection rather than direct call as Domains need to be "server" independent. |
void |
EJBPersistable.storeToBean(java.lang.Object bean, Row store) |
void |
EJBPersistable.beanToStore(java.lang.Object bean, Row store) |
void |
AttributeDefImpl.storeToBean(java.lang.Object bean, Row store) Internal: Applications should not use this method. |
void |
AttributeDefImpl.beanToStore(java.lang.Object bean, Row store) Internal: Applications should not use this method. |
protected java.lang.String |
AttributeDefImpl.printXMLDefinition(Row row, java.util.Hashtable allDefs, java.io.PrintWriter pw, int depthCount) |
Uses of Row in oracle.jbo.server.ejb.facade |
Classes in oracle.jbo.server.ejb.facade that implement Row | |
class |
EntityFacadeImpl Abstract base class for Entity Facade. |
Methods in oracle.jbo.server.ejb.facade that return Row | |
protected Row[] |
FinderViewImpl.retrieveByKey(ViewRowSetImpl rs, Key key, int maxNumOfRows) Overrides the base implementation of retrieveByKey(ViewRowSetImpl, Key, int) . |
Uses of Row in oracle.jbo.uicli.binding |
Methods in oracle.jbo.uicli.binding that return Row | |
Row |
JUIteratorBinding.getCurrentRow() Returns the current row of the iterator with which this binding object is associated. |
Row |
JUIteratorBinding.getRowAtRangeIndex(int rangeIndex) Returns the row of given range index. |
Row[] |
JUIteratorBinding.getAllRowsInRange() Returns an array of rows in the current range of the current RowIterator. |
Row |
JUControlBinding.getCurrentRow() Returns the current row for which this control is displaying data. |
Row |
JUControlBinding.getRowAtRangeIndex(int rangeIndex) Returns the row of given range index. |
Row[] |
JUControlBinding.getAllRowsInRange() Returns the rows in current range in the RowIterator with which this control binding is working. |
Methods in oracle.jbo.uicli.binding with parameters of type Row | |
protected abstract void |
JUFormBinding.callBeforeSetAttribute(JUControlBinding ctrl, Row row, AttributeDef ad, java.lang.Object value) Invoked before any control binding performs a setAttribute call on a BC4J row. |
void |
JUCtrlValueBinding.updateValuesFromRow(Row row) Given a row, update the control with new attribute values from this row based on the attributes with which this binding is associated. |
abstract void |
JUCtrlValueBinding.updateValuesFromRows(Row[] rows, boolean clear) Given a set of rows, update the control with new attribute values from the rows based on the attributes with which this binding is associated. |
java.lang.Object |
JUCtrlValueBinding.getAttributeFromRow(Row row, AttributeDef def) |
java.lang.Object |
JUCtrlValueBinding.getAttributeFromRow(Row row, int attrIndex) |
java.lang.Object |
JUCtrlValueBinding.getAttributeFromRow(Row row, java.lang.String name) |
void |
JUCtrlValueBinding.setAttributeInRow(Row row, AttributeDef def, java.lang.Object value) |
void |
JUCtrlValueBinding.setAttributeInRow(Row row, AttributeDef def, java.lang.Object value, boolean handleException) |
void |
JUCtrlValueBinding.setAttributeInRow(Row row, int attrIndex, java.lang.Object value, boolean handleException) |
void |
JUCtrlValueBinding.setAttributeInRow(Row row, java.lang.String name, java.lang.Object value, boolean handleException) |
void |
JUCtrlRangeBinding.updateValuesFromRow(Row row) This method is called in the framework when values of a single row need to be updated in a control (typically on a navigation event). |
void |
JUCtrlRangeBinding.updateValuesFromRows(Row[] rows, boolean clear) This method is invoked in the framework to update values displayed in the associated control. |
protected boolean |
JUCtrlListBinding.matchTargetWithLov(Row targetRow, Row lovRow) *** For internal framework use only *** |
protected boolean |
JUCtrlListBinding.matchTargetWithLov(Row targetRow, Row lovRow) *** For internal framework use only *** |
void |
JUCtrlListBinding.updateValuesFromRow(Row row) |
protected void |
JUCtrlListBinding.setTargetAttrsFromLovRow(Row targetRow, Row lovRow) *** For internal framework use only *** |
protected void |
JUCtrlListBinding.setTargetAttrsFromLovRow(Row targetRow, Row lovRow) *** For internal framework use only *** |
void |
JUCtrlAttrsBinding.updateValuesFromRow(Row row) Updates the control-binding and hence the control with attribute values from the attributes of this Row. |
void |
JUCtrlAttrsBinding.updateValuesFromRows(Row[] rows, boolean clear) Passes on the first row from the given array of rows to updateValuesFromRow() method to update the bound control's display. |
Uses of Row in oracle.jbo.uicli.jui |
Methods in oracle.jbo.uicli.jui that return Row | |
Row |
JUPanelValidationEvent.getRow() |
Row |
JULovPanelInterface.getSelectedRow() Returns the currently selected Row in the Lov Panel, so that the binding uses this row to update the target values. |
Methods in oracle.jbo.uicli.jui with parameters of type Row | |
void |
JUTreeNodeBinding.updateValuesFromRow(Row row) Finds the child node that displays this row and updates its display. |
void |
JUTreeNodeBinding.updateValuesFromRows(Row[] rows, boolean clear) Updates the child nodes that this node contains after optionally clearing out all the currently displayed children based on the clear flag. |
boolean |
JUTreeDiscrAttrTypeBinding.matchRowDiscrColumn(Row row) Returns true if the given row has an attribute value for the discriminator attribute that this node type is interested in, such that that attribute value matches this type's discriminator attribute value. |
void |
JUTreeBinding.updateValuesFromRows(Row[] rows, boolean clear) Updates the nodes in the tree based on the given set of rows. |
void |
JUTreeBinding.updateValuesFromRow(Row row) This method is called in the framework when values of a single row need to be updated in a control (typically on a navigation event). |
void |
JUTableBinding.updateValuesFromRows(Row[] rows, boolean clear) Updates the JTable's display with the given set of rows after optionally clearing out the current rows (if clear is true). |
protected void |
JUPanelBinding.callBeforeSetAttribute(JUControlBinding ctrl, Row row, AttributeDef ad, java.lang.Object value) Calls beforeSetAttribute() method to notify all validation listeners. |
void |
JUMasterDetailGraphBinding.updateValuesFromRows(Row[] rows, boolean clear) |
void |
JULabelBinding.updateValuesFromRow(Row row) Makes sure that labels are not turned into disabled if the attribute is marked readonly. |
void |
JUGraphBinding.updateValuesFromRows(Row[] rows, boolean clear) |
Constructors in oracle.jbo.uicli.jui with parameters of type Row | |
JUTreeNodeBinding(javax.swing.JTree tr, JUTreeBinding treeBinding, JUTreeNodeBinding parent, JUIteratorBinding iterBinding, JUCtrlHierTypeBinding typeBinding, RowSetIterator parentRSI, Row row, boolean expandable) *** For internal framework use only *** | |
JUPanelValidationEvent(JUControlBinding source, JUFormBinding panel, JUIteratorBinding iterBinding, Row row, java.lang.String attrName, java.lang.Object value) | |
JUPanelValidationEvent(JUFormBinding source, JUIteratorBinding iterBinding, Row row) |
Uses of Row in oracle.jdeveloper.html |
Methods in oracle.jdeveloper.html with parameters of type Row | |
java.lang.String |
ViewLinkLookupFieldRenderer.renderToString(Row row) |
java.lang.String |
TextField.renderToString(Row row) |
java.lang.String |
TextArea.renderToString(Row row) |
java.lang.String |
StructField.renderToString(Row row) |
java.lang.String |
StaticPickList.renderToString(Row row) |
java.lang.String |
ReadOnlyField.renderToString(Row row) |
java.lang.String |
PickList.renderToString(Row row) |
java.lang.String |
PasswordField.renderToString(Row row) |
java.lang.String |
LOVField.renderToString(Row row) |
java.lang.String |
ListFieldRenderer.renderToString(Row row) |
java.lang.String |
ListFieldEditRenderer.renderToString(Row row) |
protected java.lang.String |
HTMLFieldRendererImpl.getHTMLValue(Row row, RowSet rs, java.lang.String attrName) |
protected java.lang.String |
HTMLFieldRendererImpl.getHTMLValue(Row row) |
protected void |
HTMLFieldRendererImpl.setValueFromRow(Row row) |
java.lang.String |
HTMLFieldRenderer.renderToString(Row row) This method is called when the field renderers are being used from the Tag library and from the DataWebBeans. |
java.lang.String |
HiddenField.renderToString(Row row) |
protected java.lang.String |
DisplayArrayField.getHTMLValue(Row row) |
java.lang.String |
DateField.renderToString(Row row) |
java.lang.String |
DataWebBeanImpl.getRowKey(Row row) |
HTMLFieldRenderer |
DataWebBeanImpl.getEditFieldRenderer(Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataWebBeanImpl.getDisplayFieldRenderer(Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataWebBean.getEditFieldRenderer(Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
HTMLFieldRenderer |
DataWebBean.getDisplayFieldRenderer(Row row, AttributeDef attrDef) Retrieves the default field renderer for a specified attribute definition (that is, the attribute metadata). |
java.lang.String |
ArrayField.renderToString(Row row) |
|
Oracle9i Business Components for Java API Reference Oracle9i Jdeveloper (9.0.4) B10391-01 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1997, 2003, Oracle. All rights reserved.