Uses of Interface
javax.rad.model.IDataRow

Packages that use IDataRow
com.sibvisions.rad.genui.celleditor Contains generic cell editors. 
com.sibvisions.rad.model Contains model implementations. 
com.sibvisions.rad.model.mem Contains all storage independent model classes. 
com.sibvisions.rad.model.remote Contains model implementations for accessing remote data. 
com.sibvisions.rad.persist Contains implementations of the persistence definitions. 
com.sibvisions.rad.ui.celleditor Contains technology and platform independent cell editor implementations. 
com.sibvisions.rad.ui.swing.ext Contains all swing extensions which can be used without the platform and technology independent interface definitions. 
com.sibvisions.rad.ui.swing.ext.celleditor Contains components for creating editors. 
com.sibvisions.rad.ui.swing.ext.format Contains table extensions. 
com.sibvisions.rad.ui.swing.impl.control Contains Swing control implementations based on the platform and technology independent interface definitions. 
javax.rad.genui.celleditor Contains a generic implementation of the platform and technology independent celleditor interfaces to design graphical user interfaces. 
javax.rad.genui.control Contains a generic implementation of the platform and technology independent control interfaces to design graphical user interfaces. 
javax.rad.model Contains all model interfaces, abstract base and exception classes. 
javax.rad.model.condition Contains ICondition implementations for different SQL operators. 
javax.rad.model.event Contains all model event classes and interfaces. 
javax.rad.model.ui Contains UI relevant interface definitions. 
javax.rad.ui.control Contains all interfaces to develop controls for a graphical user interface. 
 

Uses of IDataRow in com.sibvisions.rad.genui.celleditor
 

Methods in com.sibvisions.rad.genui.celleditor with parameters of type IDataRow
 ICellEditorHandler UIEnumCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 

Uses of IDataRow in com.sibvisions.rad.model
 

Methods in com.sibvisions.rad.model with parameters of type IDataRow
static ICondition Filter.createEqualsFilter(IDataRow pFilterDataRow, java.lang.String[] pFilterColumnNames)
          Creates a Filter with AND combined EQUALS conditions over all filter column names.
static ICondition Filter.createEqualsFilter(IDataRow pFilterDataRow, java.lang.String[] pFilterColumnNames, boolean pIgnoreNull)
          Creates a Filter with AND combined EQUALS conditions over all filter column names.
static ICondition Filter.createFilter(IDataRow pFilterDataRow)
          Creates an Filter with AND combined and for each
- column with the DataType String with LikeIgnoreCase condition and
- column with the DataType BigDecimal & Boolean with Equals condition and
- for two column in order with the DataType Timestamp the first with GreaterEquals and the second with LessEquals condition and
- one column with the DataType Timestamp with Equals condition and
- column with an ILinkedCellEditor.setValidationEnabled(true) with Equals otherwise with a LikeIgnoreCase condition
over all columns.
static ICondition Filter.createFilter(IDataRow pFilterDataRow, java.lang.String[] pFilterColumnNames)
          Creates an Filter with AND combined and for each
- column with the DataType String with LikeIgnoreCase condition and
- column with the DataType BigDecimal & Boolean with Equals condition and
- for two column in order with the DataType Timestamp the first with GreaterEquals and the second with LessEquals condition and
- one column with the DataType Timestamp with Equals condition and
- column with an ILinkedCellEditor.setValidationEnabled(true) with Equals otherwise with a LikeIgnoreCase condition
over all filter column names.
static ICondition Filter.createLikeFilter(IDataRow pFilterDataRow, java.lang.String[] pFilterColumnNames)
          Creates a Filter with AND combined LIKE conditions over all filter column names.
static ICondition Filter.createLikeIgnoreCaseFilter(IDataRow pFilterDataRow, java.lang.String[] pFilterColumnNames)
          Creates a Filter with AND combined LikeIgnoreCase conditions over all filter column names.
 int[] DataBookSorter.sort(IDataRow[] pDataRows)
          Sorts an array of IDataRows.
 

Uses of IDataRow in com.sibvisions.rad.model.mem
 

Classes in com.sibvisions.rad.model.mem that implement IDataRow
 class ChangeableDataRow
          An IChangeableDataRow extends the IDataRow with support for the change state of the row, some supporting methods and an unique ID column.
 class DataRow
          An DataRow is a list of table column's.
 class MemDataBook
          The MemDataBook is a storage independent table, and handles all operations to load, save and manipulate table oriented data.
 

Fields in com.sibvisions.rad.model.mem declared as IDataRow
protected  IDataRow MemDataPage.drMasterDataRow
          The master row from the corresponding master DataBook.
 

Methods in com.sibvisions.rad.model.mem that return IDataRow
 IDataRow MemDataBook.createDataRow(java.lang.String[] pColumnNames)
          Creates and returns a new IDataRow which only contains the specified columns and their values.
 IDataRow DataRow.createDataRow(java.lang.String[] pColumnNames)
          Creates and returns a new IDataRow which only contains the specified columns and their values.
 IDataRow DataRow.createEmptyDataRow(java.lang.String[] pColumnNames)
          Creates and returns a new empty IDataRow which only contains the specified columns without any values.
 IDataRow DataRow.createEmptyRow(java.lang.String[] pColumnNames)
          Deprecated. 
protected  IDataRow MemDataBook.executeInsert(IChangeableDataRow pDataRow)
          Its called when the inserting DataRow (new row) should be inserted.
protected  IDataRow MemDataBook.executeLockAndRefetch(IChangeableDataRow pDataRow)
          Its called before the DataRow (existing row) will be changed.
protected  IDataRow MemDataBook.executeUpdate(IChangeableDataRow pDataRow)
          Its called when the updating DataRow (changed row) should be updated Derived classed should override this to implemented the needed functionality.
 IDataRow MemDataPage.getMasterDataRow()
          Gets the corresponding master row.
 IDataRow MemDataBook.getMasterDataRow()
          Gets the corresponding master row.
 IDataRow MemDataBook.getOriginalDataRow()
          Gets the original IDataRow, before any changes were performed.
 IDataRow ChangeableDataRow.getOriginalDataRow()
          Gets the original IDataRow, before any changes were performed.
 IDataRow ChangeableDataRow.getOriginalRow()
          Deprecated. 
 

Methods in com.sibvisions.rad.model.mem with parameters of type IDataRow
 int DataRow.compareTo(IDataRow pDataRow)
          
 int DataRow.compareTo(IDataRow pDataRow, SortDefinition pSortDefinition)
          Compares this IDataRow with the given IDataRow, by considering the given SortDefinition and comparing the values of both rows according to the SortDefinition.
protected  MemDataPage MemDataBook.createAndCacheDataPage(IDataRow pMasterDataRow)
          It constructs a new MemDataPage and puts it in the datapage cache.
protected  MemDataPage MemDataBook.createDataPage(IDataRow pMasterDataRow)
          It constructs a new MemDataPage.
 boolean DataRow.equals(IDataRow pDataRow, java.lang.String[] pColumnNames)
          Compares this IDataRow with the given IDataRow for equality, but only compares the values in the column whose names are given, ignoring all not given columns.
 IDataPage MemDataBook.getDataPage(IDataRow pMasterDataRow)
          Returns the corresponding IDataPage to specified master row from the master DataBook.
 IDataPage MemDataBook.getDataPage(IDataRow pRootRow, TreePath pTreePath)
          Gets the IDataPage for the given TreePath and the given root row.
 IDataPage MemDataBook.getDataPageWithRootRow(IDataRow pRootDataRow)
          Returns the corresponding IDataPage to specified root row from the root DataBook.
 boolean MemDataBook.hasDataPage(IDataRow pMasterDataRow)
          Returns true if an IDataPage to specified master row from the master DataBook exists.
 boolean MemDataBook.hasDataPage(IDataRow pRootDataRow, TreePath pTreePath)
          Returns true if an IDataPage to specified root row and TreePath from the master DataBook exists.
 void MemDataBook.removeDataPage(IDataRow pMasterDataRow, TreePath pTreePath)
          Removes the DataPage to the specified master DataRow or TreePath. e.g.
protected  void MemDataPage.setMasterDataRow(IDataRow pMasterDataRow)
          Sets a new Master DataRow, if it changes.
 

Constructors in com.sibvisions.rad.model.mem with parameters of type IDataRow
MemDataPage(MemDataBook pDataBook, IDataRow pMasterDataRow)
          Construct a new MemDataPage for the specified IDataBook and the corresponding master row.
 

Uses of IDataRow in com.sibvisions.rad.model.remote
 

Classes in com.sibvisions.rad.model.remote that implement IDataRow
 class RemoteDataBook
          The RemoteDataBook is a storage independent table, and handles all operations based on the the MemDatabook base class.
 

Methods in com.sibvisions.rad.model.remote that return IDataRow
protected  IDataRow RemoteDataBook.executeInsert(IChangeableDataRow pDataRow)
          Its called when the inserting DataRow (new row) should be inserted.
protected  IDataRow RemoteDataBook.executeLockAndRefetch(IChangeableDataRow pDataRow)
          Its called before the DataRow (existing row) will be changed.
protected  IDataRow RemoteDataBook.executeUpdate(IChangeableDataRow pDataRow)
          Its called when the updating DataRow (changed row) should be updated Derived classed should override this to implemented the needed functionality.
 

Methods in com.sibvisions.rad.model.remote with parameters of type IDataRow
protected  MemDataPage RemoteDataBook.createDataPage(IDataRow pMasterDataRow)
          It constructs a new MemDataPage.
protected  int RemoteDataBook.getFetchedRowsForBlock(IDataRow pMasterDataRow)
          Returns the amount of fetched rows per block.
protected  void RemoteDataBook.setFetchedRowsForBlock(IDataRow pMasterDataRow, int pFetchedRows)
          Sets the amount of fetched rows per block.
 

Constructors in com.sibvisions.rad.model.remote with parameters of type IDataRow
RemoteDataPage(MemDataBook pDataBook, IDataRow pMasterDataRow)
          Constructs a new RemoteDataPage for the specified IDataBook and the corresponding master row.
 

Uses of IDataRow in com.sibvisions.rad.persist
 

Classes in com.sibvisions.rad.persist that implement IDataRow
 class StorageDataBook
          The StorageDataBook is a RemoteDataBook directly connected to an IStorage.
 

Uses of IDataRow in com.sibvisions.rad.ui.celleditor
 

Methods in com.sibvisions.rad.ui.celleditor with parameters of type IDataRow
protected  java.lang.String AbstractLinkedCellEditor.getDisplayValue(IDataRow pDataRow, java.lang.String pColumnName)
          Gets the correct display value for the given row and column.
 

Uses of IDataRow in com.sibvisions.rad.ui.swing.ext
 

Methods in com.sibvisions.rad.ui.swing.ext that return IDataRow
 IDataRow JVxEditor.getDataRow()
          Gets the DataRow edited by this control.
 IDataRow JVxTree.DataPageNode.getPrimaryKey(IDataRow pDataRow)
          Gets the primary key part of the given datarow.
 

Methods in com.sibvisions.rad.ui.swing.ext with parameters of type IDataRow
 IDataRow JVxTree.DataPageNode.getPrimaryKey(IDataRow pDataRow)
          Gets the primary key part of the given datarow.
 void JVxEditor.setDataRow(IDataRow pDataRow)
          Sets the DataRow edited by this control.
 

Uses of IDataRow in com.sibvisions.rad.ui.swing.ext.celleditor
 

Methods in com.sibvisions.rad.ui.swing.ext.celleditor that return IDataRow
 IDataRow JVxTextCellEditor.CellEditorHandler.getDataRow()
          Returns the IDataRow that is edited.
 IDataRow JVxNumberCellEditor.CellEditorHandler.getDataRow()
          Returns the IDataRow that is edited.
 IDataRow JVxLinkedCellEditor.CellEditorHandler.getDataRow()
          Returns the IDataRow that is edited.
 IDataRow JVxDateCellEditor.CellEditorHandler.getDataRow()
          Returns the IDataRow that is edited.
 

Methods in com.sibvisions.rad.ui.swing.ext.celleditor with parameters of type IDataRow
 ICellEditorHandler<javax.swing.JComponent> JVxTextCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxNumberCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxLinkedCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxImageViewer.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxDateCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxChoiceCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 ICellEditorHandler<javax.swing.JComponent> JVxCheckBoxCellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 java.awt.Component JVxNumberCellEditor.getCellRendererComponent(java.awt.Component pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.awt.Component JVxImageViewer.getCellRendererComponent(java.awt.Component pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.awt.Component JVxDateCellEditor.getCellRendererComponent(java.awt.Component pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.awt.Component JVxChoiceCellEditor.getCellRendererComponent(java.awt.Component pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.awt.Component JVxCheckBoxCellEditor.getCellRendererComponent(java.awt.Component pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 javax.swing.JComponent JVxTextCellEditor.getCellRendererComponent(javax.swing.JComponent pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean hasFocus)
          Configures a IComponent for rendering.
 javax.swing.JComponent JVxLinkedCellEditor.getCellRendererComponent(javax.swing.JComponent pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean hasFocus)
          Configures a IComponent for rendering.
 int JVxLinkedCellEditor.getDefaultHorizontalAlignment(IDataRow pDataRow, java.lang.String pColumnName)
          Gets the default horizontal alignment based on data type.
 

Constructors in com.sibvisions.rad.ui.swing.ext.celleditor with parameters of type IDataRow
JVxDateCellEditor.CellEditorHandler(JVxDateCellEditor pCellEditor, ICellFormatterEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new CellEditorHandler.
JVxLinkedCellEditor.CellEditorHandler(JVxLinkedCellEditor pCellEditor, ICellFormatterEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName, java.lang.String pDisplayColumnName)
          Constructs a new CellEditorHandler.
JVxNumberCellEditor.CellEditorHandler(JVxNumberCellEditor pCellEditor, ICellFormatterEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new CellEditorHandler.
JVxTextCellEditor.CellEditorHandler(JVxTextCellEditor pCellEditor, ICellFormatterEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new CellEditorHandler.
 

Uses of IDataRow in com.sibvisions.rad.ui.swing.ext.format
 

Methods in com.sibvisions.rad.ui.swing.ext.format with parameters of type IDataRow
 CellFormat ICellFormatter.getCellFormat(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Gets the format for the given cell.
 javax.swing.Icon INodeFormatter.getNodeImage(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, boolean pExpanded, boolean pLeaf)
          Gets the image for the given node.
 

Uses of IDataRow in com.sibvisions.rad.ui.swing.impl.control
 

Methods in com.sibvisions.rad.ui.swing.impl.control that return IDataRow
 IDataRow SwingEditor.getDataRow()
          Returns the DataRow displayed by this control.
 

Methods in com.sibvisions.rad.ui.swing.impl.control with parameters of type IDataRow
 CellFormat SwingTree.getCellFormat(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Gets the format for the given cell.
 CellFormat SwingTable.getCellFormat(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Gets the format for the given cell.
 CellFormat SwingEditor.getCellFormat(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Gets the format for the given cell.
 javax.swing.Icon SwingTree.getNodeImage(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, boolean pExpanded, boolean pLeaf)
          Gets the image for the given node.
 void SwingEditor.setDataRow(IDataRow pDataRow)
          Sets the DataRow displayed by this control.
 

Uses of IDataRow in javax.rad.genui.celleditor
 

Methods in javax.rad.genui.celleditor with parameters of type IDataRow
 ICellEditorHandler UICellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 java.lang.Object UIImageViewer.getCellRendererComponent(java.lang.Object pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.lang.Object UIChoiceCellEditor.getCellRendererComponent(java.lang.Object pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 java.lang.Object UICheckBoxCellEditor.getCellRendererComponent(java.lang.Object pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 

Uses of IDataRow in javax.rad.genui.control
 

Methods in javax.rad.genui.control that return IDataRow
 IDataRow UIEditor.getDataRow()
          Returns the DataRow displayed by this control.
 

Methods in javax.rad.genui.control with parameters of type IDataRow
 void UIEditor.setDataRow(IDataRow pDataRow)
          Sets the DataRow displayed by this control.
 

Constructors in javax.rad.genui.control with parameters of type IDataRow
UIEditor(IDataRow pDataRow, java.lang.String pColumnName)
          Creates a new instance of UIEditor.
 

Uses of IDataRow in javax.rad.model
 

Subinterfaces of IDataRow in javax.rad.model
 interface IChangeableDataRow
          The IChangeableDataRow is an IDataRow extension which adds support for monitoring the state of the IDataRow (whether it is currently changing or not, and what changes are occurring).
 interface IDataBook
          The IDataBook is a storage independent representation of table and handles all the operations to load, save and change the data.
 

Methods in javax.rad.model that return IDataRow
 IDataRow IDataRow.createDataRow(java.lang.String[] pColumnNames)
          Creates and returns a new IDataRow which only contains the specified columns and their values.
 IDataRow IDataRow.createEmptyDataRow(java.lang.String[] pColumnNames)
          Creates and returns a new empty IDataRow which only contains the specified columns without any values.
 IDataRow IDataRow.createEmptyRow(java.lang.String[] pColumnNames)
          Deprecated. since 2.5, use createEmptyDataRow(String[]) instead.
 IDataRow IDataBook.getAdditionalDataRow()
          Returns the additional data row.
 IDataRow IDataPage.getMasterDataRow()
          Gets the corresponding master row.
 IDataRow IChangeableDataRow.getOriginalDataRow()
          Gets the original IDataRow, before any changes were performed.
 IDataRow IChangeableDataRow.getOriginalRow()
          Deprecated. since 2.5, use IChangeableDataRow.getOriginalDataRow().
 

Methods in javax.rad.model with parameters of type IDataRow
 int IDataRow.compareTo(IDataRow pDataRow, SortDefinition pSortDefinition)
          Compares this IDataRow with the given IDataRow, by considering the given SortDefinition and comparing the values of both rows according to the SortDefinition.
 boolean IDataRow.equals(IDataRow pDataRow, java.lang.String[] pColumnNames)
          Compares this IDataRow with the given IDataRow for equality, but only compares the values in the column whose names are given, ignoring all not given columns.
 IDataPage IDataBook.getDataPage(IDataRow pMasterRow)
          Returns the corresponding IDataPage to specified master row from the master DataBook.
 IDataPage IDataBook.getDataPage(IDataRow pRootRow, TreePath pTreePath)
          Gets the IDataPage for the given TreePath and the given root row.
 IDataPage IDataBook.getDataPageWithRootRow(IDataRow pRootRow)
          Returns the corresponding IDataPage to specified root row from the root DataBook.
 boolean IDataBook.hasDataPage(IDataRow pMasterDataRow)
          Returns true if an IDataPage to specified master row from the master DataBook exists.
 void IDataBook.removeDataPage(IDataRow pMasterDataRow, TreePath pTreePath)
          Removes the DataPage to the specified master DataRow or TreePath. e.g.
 

Constructors in javax.rad.model with parameters of type IDataRow
ColumnView(IDataRow pDataRow)
          Constructs a new ColumnView for all columns of the given data row.
 

Uses of IDataRow in javax.rad.model.condition
 

Methods in javax.rad.model.condition that return IDataRow
 IDataRow CompareCondition.getDataRow()
          Returns the data row to use in the compare.
 

Methods in javax.rad.model.condition with parameters of type IDataRow
 boolean Or.isFulfilled(IDataRow pDataRow)
          Returns true, if the ICondition is fulfilled.
 boolean Not.isFulfilled(IDataRow pDataRow)
          Returns true, if the ICondition is fulfilled.
 boolean ICondition.isFulfilled(IDataRow pDataRow)
          Returns true, if the ICondition is fulfilled.
 boolean CompareCondition.isFulfilled(IDataRow pDataRow)
          Returns true, if the ICondition is fulfilled.
 boolean And.isFulfilled(IDataRow pDataRow)
          Returns true, if the ICondition is fulfilled.
 

Constructors in javax.rad.model.condition with parameters of type IDataRow
CompareCondition(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs the base for a CompareCondition, with a column, the IDataRow to check and if null values should be ignored.
CompareCondition(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs the base for a CompareCondition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
CompareCondition(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs the base for a CompareCondition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
CompareCondition(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs the base for a CompareCondition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
ContainsIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new ContainsIgnoreCase Condition, with a column, the IDataRow to check and if null values should be ignored.
ContainsIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new ContainsIgnoreCase Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
ContainsIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new ContainsIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
ContainsIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new ContainsIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
Equals(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new Equals Condition, with a column, the IDataRow to check and if null values should be ignored.
Equals(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Equals Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
Equals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new Equals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
Equals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Equals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
Greater(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new Greater Condition, with a column, the IDataRow to check and if null values should be ignored.
Greater(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Greater Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
Greater(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new Greater Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
Greater(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Greater Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
GreaterEquals(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new GreaterEquals Condition, with a column, the IDataRow to check and if null values should be ignored.
GreaterEquals(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new GreaterEquals Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
GreaterEquals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new GreaterEquals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
GreaterEquals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new GreaterEquals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
Less(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new Less Condition, with a column, the IDataRow to check and if null values should be ignored.
Less(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Less Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
Less(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new Less Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
Less(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Less Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
LessEquals(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new LessEquals Condition, with a column, the IDataRow to check and if null values should be ignored.
LessEquals(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LessEquals Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
LessEquals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new LessEquals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
LessEquals(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LessEquals Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
Like(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new Like Condition, with a column, the IDataRow to check and if null values should be ignored.
Like(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Like Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
Like(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new Like Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
Like(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new Like Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
LikeIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new LikeIgnoreCase Condition, with a column, the IDataRow to check and if null values should be ignored.
LikeIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeIgnoreCase Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
LikeIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new LikeIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
LikeIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
LikeReverse(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new LikeReverse Condition, with a column, the IDataRow to check and if null values should be ignored.
LikeReverse(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeReverse Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
LikeReverse(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new LikeReverse Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
LikeReverse(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeReverse Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
LikeReverseIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new LikeReverseIgnoreCase Condition, with a column, the IDataRow to check and if null values should be ignored.
LikeReverseIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeReverseIgnoreCase Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
LikeReverseIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new LikeReverseIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
LikeReverseIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new LikeReverseIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
StartsWithIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName)
          Constructs a new StartsWithIgnoreCase Condition, with a column, the IDataRow to check and if null values should be ignored.
StartsWithIgnoreCase(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new StartsWithIgnoreCase Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true).
StartsWithIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
          Constructs a new StartsWithIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true).
StartsWithIgnoreCase(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
          Constructs a new StartsWithIgnoreCase Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored.
 

Uses of IDataRow in javax.rad.model.event
 

Methods in javax.rad.model.event that return IDataRow
 IDataRow DataRowEvent.getChangedDataRow()
          Gets the IDataRow that is changed.
 IDataRow DataRowEvent.getOriginalDataRow()
          Gets the original IDataRow before change.
 IDataRow DataBookEvent.getOriginalDataRow()
          Gets the original IDataRow before change.
 

Methods in javax.rad.model.event with parameters of type IDataRow
 void IRowCalculator.calculateRow(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow)
          Is called when a new row is loaded, inserted or updated.
 boolean IReadOnlyChecker.isReadOnly(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Is called to determine whether the value at the location (row/column) should be readonly or not.
 

Constructors in javax.rad.model.event with parameters of type IDataRow
DataBookEvent(IDataBook pChangedDataBook, DataBookEvent.ChangedType pChangedType, IDataRow pOriginalDataRow)
          Creates a new instance of DataBookEvent.
DataRowEvent(IDataRow pChangedDataRow, java.lang.String[] pChangedColumnNames, IDataRow pOriginalDataRow)
          Creates a new instance of DataRowEvent.
 

Uses of IDataRow in javax.rad.model.ui
 

Methods in javax.rad.model.ui that return IDataRow
 IDataRow IEditorControl.getDataRow()
          Returns the DataRow displayed by this control.
 IDataRow ICellEditorHandler.getDataRow()
          Returns the IDataRow that is edited.
 

Methods in javax.rad.model.ui with parameters of type IDataRow
 ICellEditorHandler ICellEditor.createCellEditorHandler(ICellEditorListener pCellEditorListener, IDataRow pDataRow, java.lang.String pColumnName)
          creates an ICellEditorHandler library dependent component.
 C ICellRenderer.getCellRendererComponent(C pParentComponent, IDataPage pDataPage, int pRowNumber, IDataRow pDataRow, java.lang.String pColumnName, boolean pIsSelected, boolean pHasFocus)
          Configures a IComponent for rendering.
 void IEditorControl.setDataRow(IDataRow pDataRow)
          Sets the DataRow displayed by this control.
 

Uses of IDataRow in javax.rad.ui.control
 

Methods in javax.rad.ui.control with parameters of type IDataRow
 ICellFormat ICellFormatter.getCellFormat(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, int pColumn)
          Gets the ICellFormat for the specified cell.
 IImage INodeFormatter.getNodeImage(IDataBook pDataBook, IDataPage pDataPage, IDataRow pDataRow, java.lang.String pColumnName, int pRow, boolean pExpanded, boolean pLeaf)
          Gets the image for the given node.
 



Copyright © 2009 SIB Visions GmbH. All Rights Reserved.