|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ICellEditor | |
---|---|
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.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(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(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 |
JVxChoiceCellEditor
The JVxChoiceCellEditor provides the generation of the
physical choice editor component, handles correct all events, and
gives standard access to edited values. |
class |
JVxComboCellEditor
The JVxComboCellEditor defines popup handling of in place editors. |
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 |
JVxInplaceCellEditor
The JVxInplaceCellEditor provides the styling of cell editors. |
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 |
JVxStyledCellEditor
The JVxStyledCellEditor provides the styling of cell editors. |
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(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(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 |
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(Class pClass)
Gets the default ICellEditor for 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.setDefaultCellEditor(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 . |
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 . |
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(Class<?> pClass)
Gets the default ICellEditor for the given class. |
Methods in javax.rad.ui with parameters of type ICellEditor | |
---|---|
void |
IFactory.setDefaultCellEditor(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 |
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |