Uses of Interface
javax.rad.model.ui.ICellEditor

Packages that use ICellEditor
com.sibvisions.rad.genui.celleditor Contains generic cell editors. 
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.impl Contains the Swing dependent interface implementations of the platform and technology independent interface definitions. 
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.datatype Contains all CellType classes. 
javax.rad.model.ui Contains UI relevant interface definitions. 
javax.rad.ui Contains all interfaces to develop a graphical user interface. 
javax.rad.ui.celleditor Contains all interfaces to develop cell editors. 
javax.rad.ui.control Contains all interfaces to develop controls for a graphical user interface. 
 

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

Classes in com.sibvisions.rad.genui.celleditor that implement ICellEditor
 class UIEnumCellEditor
          The UIEnumCellEditor is a special blend of an IChoiceCellEditor and ILinkedCellEditor.
 

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

Classes in com.sibvisions.rad.ui.celleditor that implement ICellEditor
 class AbstractCheckBoxCellEditor<C>
          The AbstractCheckBoxCellEditor is an ICheckBoxCellEditor implementation, which provides a base implementation.
 class AbstractChoiceCellEditor<C>
          The AbstractChoiceCellEditor is an IChoiceCellEditor implementation, which provides a base implementation.
 class AbstractComboCellEditor
          The AbstractComboCellEditor is an IComboCellEditor implementation, which provides a base implementation.
 class AbstractDateCellEditor
          The AbstractDateCellEditor is an IDateCellEditor implementation, which provides a base implementation.
 class AbstractImageViewer<C>
          The AbstractImageViewer is an IImageViewer implementation, which provides a base implementation.
 class AbstractInplaceCellEditor
          The AbstractInplaceCellEditor is an IInplaceCellEditor implementation, which provides a base implementation.
 class AbstractLinkedCellEditor
          The AbstractLinkedCellEditor is an ILinkedCellEditor implementation, which provides a base implementation.
 class AbstractNumberCellEditor
          The AbstractNumberCellEditor is an INumberCellEditor implementation, which provides a base implementation.
 class AbstractStyledCellEditor
          The AbstractStyledCellEditor is an abstract implementation of IStyledCellEditor which provides a base implementation.
 class AbstractTextCellEditor
          The AbstractTextCellEditor is an ITextCellEditor implementation, which provides a base implementation.
 

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

Methods in com.sibvisions.rad.ui.swing.ext that return ICellEditor
 ICellEditor JVxEditor.getCellEditor()
          Gets the CellEditor that edits the given column in the given DataRow.
static ICellEditor JVxUtil.getDefaultCellEditor(java.lang.Class<?> pClass)
          Gets the default ICellEditor for the given class.
 

Methods in com.sibvisions.rad.ui.swing.ext with parameters of type ICellEditor
 void JVxEditor.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor that edits the given column in the given DataRow.
static void JVxUtil.setDefaultCellEditor(java.lang.Class<?> pClass, ICellEditor pCellEditor)
          Sets the default ICellEditor for the given class.
 

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

Classes in com.sibvisions.rad.ui.swing.ext.celleditor that implement ICellEditor
 class JVxCheckBoxCellEditor
          The JVxCheckBoxCellEditor provides the generation of the physical check box editor component, handles correct all events, and gives standard access to edited values.
 class JVxChoiceCellEditor
          The JVxChoiceCellEditor provides the generation of the physical choice editor component, handles correct all events, and gives standard access to edited values.
 class JVxDateCellEditor
          The JVxDateCellEditor provides the generation of the physical Date editor component, handles correct all events, and gives standard access to edited values.
 class JVxImageViewer
          The JVxImageViewer provides the generation of the physical image viewer component, handles correct all events, and gives standard access to values.
 class JVxLinkedCellEditor
          The JVxLinkedCellEditor provides the generation of the physical linked editor component, handles correct all events, and gives standard access to edited values.
 class JVxNumberCellEditor
          The JVxTextCellEditor provides the generation of the physical number editor component, handles correct all events, and gives standard access to edited values.
 class JVxTextCellEditor
          The JVxTextCellEditor provides the generation of the physical text editor component, handles correct all events, and gives standard access to edited values.
 

Methods in com.sibvisions.rad.ui.swing.ext.celleditor that return ICellEditor
 ICellEditor JVxTextCellEditor.CellEditorHandler.getCellEditor()
          Returns the ICellEditor that created this handler.
 ICellEditor JVxNumberCellEditor.CellEditorHandler.getCellEditor()
          Returns the ICellEditor that created this handler.
 ICellEditor JVxLinkedCellEditor.CellEditorHandler.getCellEditor()
          Returns the ICellEditor that created this handler.
 ICellEditor JVxDateCellEditor.CellEditorHandler.getCellEditor()
          Returns the ICellEditor that created this handler.
 

Uses of ICellEditor in com.sibvisions.rad.ui.swing.impl
 

Methods in com.sibvisions.rad.ui.swing.impl that return ICellEditor
 ICellEditor SwingFactory.getDefaultCellEditor(java.lang.Class<?> pClass)
          Gets the default ICellEditor for the given class.
 

Methods in com.sibvisions.rad.ui.swing.impl with parameters of type ICellEditor
 void SwingFactory.setDefaultCellEditor(java.lang.Class<?> pClass, ICellEditor pCellEditor)
          Sets the default ICellEditor for the given class.
 

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

Methods in com.sibvisions.rad.ui.swing.impl.control that return ICellEditor
 ICellEditor SwingEditor.getCellEditor()
          Gets the CellEditor that edits the given column in the given DataRow.
 

Methods in com.sibvisions.rad.ui.swing.impl.control with parameters of type ICellEditor
 void SwingEditor.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor that edits the given column in the given DataRow.
 

Uses of ICellEditor in javax.rad.genui.celleditor
 

Classes in javax.rad.genui.celleditor that implement ICellEditor
 class UICellEditor<CE extends IStyledCellEditor>
          Platform and technology independent editor.
 class UICheckBoxCellEditor
          Platform and technology independent check box editor.
 class UIChoiceCellEditor
          Platform and technology independent choice editor.
 class UIComboCellEditor<CE extends IComboCellEditor>
          Platform and technology independent combo cell editor.
 class UIDateCellEditor
          Platform and technology independent date editor.
 class UIImageViewer
          Platform and technology independent image viewer.
 class UIInplaceCellEditor<CE extends IInplaceCellEditor>
          Platform and technology independent editor.
 class UILinkedCellEditor
          Platform and technology independent linked editor.
 class UINumberCellEditor
          Platform and technology independent number editor.
 class UITextCellEditor
          Platform and technology independent text editor.
 

Methods in javax.rad.genui.celleditor that return ICellEditor
static ICellEditor UICellEditor.getDefaultCellEditor(java.lang.Class pClass)
          Gets the default ICellEditor for the given class.
static ICellEditor UICellEditor.getDefaultCellEditor(java.lang.Object[] pValues)
          Gets a cell editor from the defaults list, if an editor is available for specific values.
static ICellEditor[] UICellEditor.getDefaultCellEditors()
          Gets all currently available default cell editors as array.
static ICellEditor[] UICellEditor.getDefaultCellEditors(java.lang.Class pClass)
          Gets all currently available default cell editors of the given class.
static ICellEditor UINumberCellEditor.getDefaultNumberCellEditor()
          Gets the default ICellEditor for Number class.
 

Methods in javax.rad.genui.celleditor with parameters of type ICellEditor
static void UICellEditor.addDefaultCellEditor(java.lang.Object[] pAllowedValues, ICellEditor pEditor)
          Adds a cell editor to the list of default cell editors.
static void UICellEditor.setDefaultCellEditor(java.lang.Class pClass, ICellEditor pCellEditor)
          Sets the default ICellEditor for the given class.
 void UINumberCellEditor.setDefaultNumberCellEditor(ICellEditor pCellEditor)
          Sets the default ICellEditor for Number class.
 

Uses of ICellEditor in javax.rad.genui.control
 

Methods in javax.rad.genui.control that return ICellEditor
 ICellEditor UIEditor.getCellEditor()
          Gets the CellEditor that edits the given column in the given DataRow.
 

Methods in javax.rad.genui.control with parameters of type ICellEditor
 void UIEditor.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor that edits the given column in the given DataRow.
 

Uses of ICellEditor in javax.rad.model.datatype
 

Methods in javax.rad.model.datatype that return ICellEditor
 ICellEditor IDataType.getCellEditor()
          Returns the CellEditor for this IDataType.
 ICellEditor DataType.getCellEditor()
          Returns the CellEditor for this IDataType.
 ICellEditor IDataType.getDefaultCellEditor()
          Returns the default CellEditor for this IDataType.
 ICellEditor DataType.getDefaultCellEditor()
          Returns the default CellEditor for this IDataType.
 

Methods in javax.rad.model.datatype with parameters of type ICellEditor
 void IDataType.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor for this IDataType.
 void DataType.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor for this IDataType.
 void IDataType.setDefaultCellEditor(ICellEditor pCellEditor)
          Sets the default CellEditor for this IDataType.
 void DataType.setDefaultCellEditor(ICellEditor pDefaultCellEditor)
          Sets the default CellEditor for this IDataType.
 

Constructors in javax.rad.model.datatype with parameters of type ICellEditor
BigDecimalDataType(ICellEditor pCellEditor)
          Constructs a default BigDecimal data type with undefined precision, scale and the given cell editor.
BigDecimalDataType(int pPrecision, int pScale, ICellEditor pCellEditor)
          Constructs a default BigDecimal data type with the given precision, scale and cell editor.
BinaryDataType(ICellEditor pCellEditor)
          Constructs a BinaryDataType with the maximum Integer size and the given cell editor.
BinaryDataType(int pSize, ICellEditor pCellEditor)
          Constructs a BinaryDataType with the given Integer size and the given cell editor.
BooleanDataType(ICellEditor pCellEditor)
          Constructs a BooleanDataType cell editor.
LongDataType(ICellEditor pCellEditor)
          Constructs a default BigDecimal data type with undefined precision, scale and the given cell editor.
ObjectDataType(ICellEditor pCellEditor)
          Constructs a ObjectDataType cell editor.
StringDataType(ICellEditor pCellEditor)
          Constructs a StringDataType with the maximum Integer size and the given cell editor.
StringDataType(int pSize, ICellEditor pCellEditor)
          Constructs a StringDataType with the given Integer size and the given cell editor.
TimestampDataType(ICellEditor pCellEditor)
          Constructs a ObjectDataType cell editor.
 

Uses of ICellEditor in javax.rad.model.ui
 

Methods in javax.rad.model.ui that return ICellEditor
 ICellEditor IEditorControl.getCellEditor()
          Gets the CellEditor that edits the given column in the given DataRow.
 ICellEditor ICellEditorHandler.getCellEditor()
          Returns the ICellEditor that created this handler.
 

Methods in javax.rad.model.ui with parameters of type ICellEditor
 void IEditorControl.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor that edits the given column in the given DataRow.
 

Uses of ICellEditor in javax.rad.ui
 

Methods in javax.rad.ui that return ICellEditor
 ICellEditor IFactory.getDefaultCellEditor(java.lang.Class<?> pClass)
          Gets the default ICellEditor for the given class.
 

Methods in javax.rad.ui with parameters of type ICellEditor
 void IFactory.setDefaultCellEditor(java.lang.Class<?> pClass, ICellEditor pCellEditor)
          Sets the default ICellEditor for the given class.
 

Uses of ICellEditor in javax.rad.ui.celleditor
 

Subinterfaces of ICellEditor in javax.rad.ui.celleditor
 interface ICheckBoxCellEditor<C>
          Platform and technology independent checkbox editor definition.
 interface IChoiceCellEditor<C>
          Platform and technology independent choice editor definition.
 interface IComboCellEditor
          Platform and technology independent combo box cell editor definition.
 interface IDateCellEditor
          Platform and technology independent date editor definition.
 interface IImageViewer<C>
          Platform and technology independent choice editor definition.
 interface IInplaceCellEditor
          Platform and technology independent in place cell editor definition.
 interface ILinkedCellEditor
          Platform and technology independent linked editor definition.
 interface INumberCellEditor
          Platform and technology independent number editor definition.
 interface IStyledCellEditor
          Platform and technology independent styled cell editor definition.
 interface ITextCellEditor
          Platform and technology independent text editor definition.
 

Uses of ICellEditor in javax.rad.ui.control
 

Methods in javax.rad.ui.control that return ICellEditor
 ICellEditor IEditor.getCellEditor()
          Gets the CellEditor that edits the given column in the given DataRow.
 

Methods in javax.rad.ui.control with parameters of type ICellEditor
 void IEditor.setCellEditor(ICellEditor pCellEditor)
          Sets the CellEditor that edits the given column in the given DataRow.
 



Copyright © 2009 SIB Visions GmbH. All Rights Reserved.