Serialized Form
|
Package com.sibvisions.rad.model.mem |
rdRowDefinition
IRowDefinition rdRowDefinition
- The
RowDefinition of this DataRow.
oaStorage
java.lang.Object[] oaStorage
- The storage for this
DataRow.
treePath
TreePath treePath
- The TreePath inside self joined IDataBook's.
iSelectionMode
IDataBook.SelectionMode iSelectionMode
- It holds the default SelectionMode of the MemDataBook. Default is SelectionMode.CURRENT_ROW.
currentSelectionMode
IDataBook.SelectionMode currentSelectionMode
- It holds the current SelectionMode of the MemDataBook. Default is SelectionMode.CURRENT_ROW.
cFilter
ICondition cFilter
- The Filter of the MemDataBook.
sSort
SortDefinition sSort
- The Sort of the MemDataBook.
sSortSortableColumnsOnly
SortDefinition sSortSortableColumnsOnly
- The Sort of the MemDataBook.
rdMasterReference
ReferenceDefinition rdMasterReference
- The ReferenceDefinition to the master IDataBook.
rdTreeRootReference
ReferenceDefinition rdTreeRootReference
- The ReferenceDefinition to the master IDataBook.
saTreeRootMasterColumnNames
java.lang.String[] saTreeRootMasterColumnNames
- The ReferenceDefinition to the master IDataBook.
iWritebackIsolationLevel
IDataBook.WriteBackIsolationLevel iWritebackIsolationLevel
- The write back isolation level.
auDetailDataBooks
ArrayUtil<E> auDetailDataBooks
- The
ArrayUtil of all detail IDataBooks.
dsDataSource
IDataSource dsDataSource
- The DataSource of the MemDataBook.
auStoredSelection
ArrayUtil<E> auStoredSelection
- It stores for the lazy reload, the last selected Row PK column values.
dpCurrentDataPage
MemDataPage dpCurrentDataPage
- The current MemDataPage of the MemDataBook.
It gets synchronized at the first use. (lazy load)
dpEmptyDataPage
MemDataPage dpEmptyDataPage
- The Empty MemDataPage, which is used as long no DataRows are available.
currentCalculatedDataRow
ChangeableDataRow currentCalculatedDataRow
- The current calculated data row.
additionalDataRow
ChangeableDataRow additionalDataRow
- The additional data row.
additionalRowDefinition
IRowDefinition additionalRowDefinition
- The additional row definition.
additionalDataRowVisible
boolean additionalDataRowVisible
- True, if the additional data row should be visible.
sortDataRowOnSave
boolean sortDataRowOnSave
- True, if the row should be moved to the correct possition after save.
htDataPagesCache
java.util.Hashtable<K,V> htDataPagesCache
- The Hashtable of all MemDataPages of the MemDataBook. It holds for each master DataRow
a MemDataPage. If the master DataRow is Inserting (new), the MemDataPage is stored
under the UID.
temporaryMasterDataPage
MemDataPage temporaryMasterDataPage
- Stores temporary the currentDataPage of a master data book during refresh.
rowCalculator
IRowCalculator rowCalculator
- The row calculator.
readOnlyChecker
IReadOnlyChecker readOnlyChecker
- The row calculator.
eventBeforeRowSelected
DataBookHandler eventBeforeRowSelected
- The
EventHandler for before selected event.
eventAfterRowSelected
DataBookHandler eventAfterRowSelected
- The
EventHandler for after selected event.
eventBeforeInserting
DataBookHandler eventBeforeInserting
- The
EventHandler for before inserting event.
eventAfterInserting
DataBookHandler eventAfterInserting
- The
EventHandler for after inserting event.
eventBeforeInserted
DataBookHandler eventBeforeInserted
- The
EventHandler for before inserted event.
eventAfterInserted
DataBookHandler eventAfterInserted
- The
EventHandler for after inserted event.
eventBeforeUpdating
DataBookHandler eventBeforeUpdating
- The
EventHandler for before updating event.
eventAfterUpdating
DataBookHandler eventAfterUpdating
- The
EventHandler for after updating event.
eventBeforeUpdated
DataBookHandler eventBeforeUpdated
- The
EventHandler for before updated event.
eventAfterUpdated
DataBookHandler eventAfterUpdated
- The
EventHandler for after updated event.
eventBeforeDeleting
DataBookHandler eventBeforeDeleting
- The
EventHandler for before deleting event.
eventAfterDeleting
DataBookHandler eventAfterDeleting
- The
EventHandler for after deleting event.
eventBeforeDeleted
DataBookHandler eventBeforeDeleted
- The
EventHandler for before deleted event.
eventAfterDeleted
DataBookHandler eventAfterDeleted
- The
EventHandler for after deleted event.
eventBeforeRestore
DataBookHandler eventBeforeRestore
- The
EventHandler for before restore event.
eventAfterRestore
DataBookHandler eventAfterRestore
- The
EventHandler for after restore event.
eventBeforeReload
DataBookHandler eventBeforeReload
- The
EventHandler for before reload event.
eventAfterReload
DataBookHandler eventAfterReload
- The
EventHandler for after reload event.
eventBeforeFilterChanged
DataBookHandler eventBeforeFilterChanged
- The
EventHandler for before filter changed event.
eventAfterFilterChanged
DataBookHandler eventAfterFilterChanged
- The
EventHandler for after filter changed event.
eventBeforeSortChanged
DataBookHandler eventBeforeSortChanged
- The
EventHandler for before sort changed event.
eventAfterSortChanged
DataBookHandler eventAfterSortChanged
- The
EventHandler for after sort changed event.
eventBeforeColumnSelected
DataBookHandler eventBeforeColumnSelected
- The
EventHandler for before selected event.
eventAfterColumnSelected
DataBookHandler eventAfterColumnSelected
- The
EventHandler for after selected event.
sName
java.lang.String sName
- Name of the MemDataBook.
sSelectedColumn
java.lang.String sSelectedColumn
- The current selected row index.
iReadAheadRowCount
int iReadAheadRowCount
- The read a head row count of the
RemoteDataBook. This means how many rows are
read ahead in the MemDataPage.
iSelectedRowIndex
int iSelectedRowIndex
- The current selected row index.
iOldSelectedRowSaveAllRows
int iOldSelectedRowSaveAllRows
- For selecting correct row in saveAllRows.
dpOldCurrentDataPageSaveAllRows
IDataPage dpOldCurrentDataPageSaveAllRows
- For selecting correct row in saveAllRows.
bMasterChanged
boolean bMasterChanged
- It determines that the master has changed and this IDataBoolk needs to synchronize
to the current MemDataPage and selected row depending on the Selection Mode.
bInsertEnabled
boolean bInsertEnabled
- It determines that insert()'s are allowed.
bUpdateEnabled
boolean bUpdateEnabled
- It determines that update()'s (setValueXXX) are allowed.
bDeleteEnabled
boolean bDeleteEnabled
- It determines that delete()'s are allowed.
bLockAndRefetchEnabled
boolean bLockAndRefetchEnabled
- It determines that lock on refetch is enabled.
bReadOnly
boolean bReadOnly
- It determines if the MemDataBook is read only. -> all change operations are allowed.
bDeleteCascade
boolean bDeleteCascade
- It defines if all details will be before delete cascade.
bMemSort
boolean bMemSort
- Determines if the sort should be made in memory.
bMemFilter
boolean bMemFilter
- Determines if the filter should be made in memory.
bWritebackEnabled
boolean bWritebackEnabled
- Determines if the RemoteDataBook should write back the changes to the AbstractStorage.
bIsOpen
boolean bIsOpen
- It determines if the MemDataBook is open.
bSaveAllRows
boolean bSaveAllRows
- It determines if saveAllRows already is called for this DataBook. Prevent endless loops.
bRestoreAllRows
boolean bRestoreAllRows
- It determines if restoreAllRows already is called for this DataBook. Prevent endless loops.
ignoreReload
boolean ignoreReload
- Ignore recursiv reload events.
factory
IFactory factory
- The ui factory.
invokeRepaintListeners
boolean invokeRepaintListeners
- invoke repaint listeners.
invokeLaterRepaintListenersCalled
boolean invokeLaterRepaintListenersCalled
- invoke repaint listeners.
invokeSaveEditingControls
boolean invokeSaveEditingControls
- invoke repaint listeners.
invokeCancelEditingControls
boolean invokeCancelEditingControls
- invoke repaint listeners.
rowInstance1
DataRow rowInstance1
- Optimization for fast row access with singleton instance of data row for search, filter, sort.
rowInstance2
DataRow rowInstance2
- Optimization for fast row access with singleton instance of data row for search, filter, sort.
rootDataBook
IDataBook rootDataBook
- The root data book.
|
Package com.sibvisions.rad.model.remote |
saMetaDataColumnNames
java.lang.String[] saMetaDataColumnNames
- It holds the column names of the server column meta data in the client RowDefinition.
saBlockFetchColumnNames
java.lang.String[] saBlockFetchColumnNames
- It holds the column names of the server column meta data in the client RowDefinition.
saBlockFetchReferencedColumnNames
java.lang.String[] saBlockFetchReferencedColumnNames
- It holds the column names of the server column meta data in the client RowDefinition.
htFetchedRowsForBlock
java.util.Hashtable<K,V> htFetchedRowsForBlock
- stores the block fetches.
mdMetaData
MetaData mdMetaData
- The meta data for this RemoteDataBook.
iaFetchColumnIndexes
int[] iaFetchColumnIndexes
- The correct column indexes of the fetched data, after opening the data book.
iaMasterColumnIndexes
int[] iaMasterColumnIndexes
- The correct column indexes of the master reference.
bCachingStorage
boolean bCachingStorage
- Indicates whether the server object is a caching storage.
bMetaDataCacheEnabled
boolean bMetaDataCacheEnabled
- whether the meta data cache is enabled (default:
true).
bFetchEnabled
boolean bFetchEnabled
- If fetch is disabled, no fetch call to server is done. This is for performance tuning reasons.
|
Package com.sibvisions.rad.persist |
objectConnection
DirectObjectConnection objectConnection
- the internal object connection.
connection
MasterConnection connection
- the internal connection.
dataSource
RemoteDataSource dataSource
- the internal datasource.
sName
java.lang.String sName
- the internal storage name.
|
Package com.sibvisions.rad.server.http |
server
Server server
- request server.
|
Package com.sibvisions.rad.ui.swing.ext |
insOrig
java.awt.Insets insOrig
- the margins without split area.
imgArrow
java.awt.Image imgArrow
- the buffered arrow image.
imgSeparator
java.awt.Image imgSeparator
- the buffered separator image.
rectCachedBounds
java.awt.Rectangle rectCachedBounds
- the buffered bounds.
separator
javax.swing.JSeparator separator
- the split separator..
menu
javax.swing.JPopupMenu menu
- the menu.
rectSplitArea
java.awt.Rectangle rectSplitArea
- the split area with the arrow.
miDefault
javax.swing.JMenuItem miDefault
- the default action if not listener is set.
auInternalListener
ArrayUtil<E> auInternalListener
- the list of internal action listeners (only for menu counting).
iSplitWidth
int iSplitWidth
- the default split area width.
iArrowWidth
int iArrowWidth
- the default arrow width.
bIsOverSplitArea
boolean bIsOverSplitArea
- whether the mouse cursor is in/over the split area.
bDefault
boolean bDefault
- the mark whether this button is the default button for a root pane.
years
javax.swing.JSpinner years
- Spinner for changing years.
months
javax.swing.JSpinner months
- Spinner for changing months.
currentTime
javax.swing.JSpinner currentTime
- Spinner for changing time.
timeMinutes
javax.swing.JSpinner timeMinutes
- Spinner for changing time.
timeSeconds
javax.swing.JSpinner timeSeconds
- Spinner for changing time.
timeMinutes12
javax.swing.JSpinner timeMinutes12
- Spinner for changing time.
timeSeconds12
javax.swing.JSpinner timeSeconds12
- Spinner for changing time.
spacer
javax.swing.JLabel spacer
- Spacer left top.
weekDays
javax.swing.JLabel[] weekDays
- Labels for week days.
weeks
javax.swing.JLabel[] weeks
- Labels for weeks.
days
javax.swing.JToggleButton[] days
- Labels for days.
calendar
java.util.GregorianCalendar calendar
- GregorianCalendar for date selection.
date
java.util.Date date
- The current selected date and time.
actionCommand
java.lang.String actionCommand
- The current actionCommand.
translation
TranslationMap translation
- The translation mapping.
selectedIndex
int selectedIndex
- The selected Day.
ignoreEvent
boolean ignoreEvent
- true, if the date changes occurs setting internal state.
bTranslationEnabled
boolean bTranslationEnabled
- whether the translation is enabled.
chartPanel
ChartPanel chartPanel
- The chart panel.
dataset
AbstractDataset dataset
- The dataset.
vaX
Axis vaX
- The x axis.
vaY
Axis vaY
- The y axis.
dataBook
IDataBook dataBook
- The DataBook to be shown.
chartStyle
int chartStyle
- The chart style.
sTitle
java.lang.String sTitle
- The title.
sXTitle
java.lang.String sXTitle
- The x axis title.
sYTitle
java.lang.String sYTitle
- The y axis title.
sXColumnName
java.lang.String sXColumnName
- The x column name.
saYColumnNames
java.lang.String[] saYColumnNames
- The y column names.
tmpTranslation
TranslationMap tmpTranslation
- The translation mapping.
bFirstNotifyRepaintCall
boolean bFirstNotifyRepaintCall
- Tells, if notifyRepaint is called the first time.
bTranslationEnabled
boolean bTranslationEnabled
- Whether the translation is enabled.
chart
JVxChart chart
- The associated chart.
dataBook
IDataBook dataBook
- The DataBook that serves as data source.
xColumnName
java.lang.String xColumnName
- Column name for the x axis.
yColumnNames
java.lang.String[] yColumnNames
- Column names for the y axis.
chart
JVxChart chart
- The associated chart.
dataBook
IDataBook dataBook
- The DataBook that serves as data source.
xColumnName
java.lang.String xColumnName
- Column name for the x axis.
yColumnNames
java.lang.String[] yColumnNames
- Column names for the y axis.
minXDiff
java.math.BigDecimal minXDiff
- minimal difference of x Values.
bDateAxis
boolean bDateAxis
- If there is a date axis.
allowedValues
java.lang.Object[] allowedValues
- The list of allowed values.
images
java.awt.Image[] images
- The list of allowed values.
cursor
java.awt.Cursor cursor
- The cursor.
defaultImage
java.awt.Image defaultImage
- The default image shown when selectedIndex is -1.
innerBackground
java.awt.Color innerBackground
- The selected index.
innerBorder
javax.swing.border.Border innerBorder
- The selected index.
imageBorderVisible
boolean imageBorderVisible
- The selected index.
paintSize
java.awt.Dimension paintSize
- The selected index.
imageWidth
int imageWidth
- The max width of the images.
imageHeight
int imageHeight
- The max height of the images.
imageSize
java.awt.Dimension imageSize
- The size the images should have.
horizontalAlignment
int horizontalAlignment
- The horizontal alignment.
verticalAlignment
int verticalAlignment
- The vertical alignment.
selectedIndex
int selectedIndex
- The selected index.
actionCommand
java.lang.String actionCommand
- The action command.
internalPopup
javax.swing.JPopupMenu internalPopup
- the internal popup menu.
ignorePopupMenuEvents
boolean ignorePopupMenuEvents
- the internal popup menu.
internalButton
javax.swing.JButton internalButton
- the internal popup menu.
doNotCancelPopupComponents
java.util.List<E> doNotCancelPopupComponents
- the components that does not cancel the popup.
windowAncestor
java.awt.Window windowAncestor
- the windowAncestor of this component.
popupComponent
javax.swing.JComponent popupComponent
- the popup component.
editorComponent
javax.swing.text.JTextComponent editorComponent
- the editor component.
popupSize
java.awt.Dimension popupSize
- the popup size.
translation
TranslationMap translation
- The translation mapping.
doNotCancelPopup
java.lang.Object doNotCancelPopup
- the the client property doNotCancelPopup.
selectedItem
java.lang.Object selectedItem
- selectedItem.
justClosed
boolean justClosed
- Determains if the popup was just closed, to prevent it to be opened again immediatly.
popupCanceled
boolean popupCanceled
- Determains if the popup is canceled.
forceFocusOnPopup
boolean forceFocusOnPopup
- Forces the Focus on the popup.
isPermanentDeactivated
boolean isPermanentDeactivated
- Determines wether the windowDeactivated is permanent.
buttonEnabled
boolean buttonEnabled
- true if the button should be enabled.
bTranslationEnabled
boolean bTranslationEnabled
- whether the translation is enabled.
dateFormatter
DateFormatter dateFormatter
- The date formatter used for formatting the date.
comboBase
JVxComboBase comboBase
- The JVxComboBase that uses this Model.
calendarPane
JVxCalendarPane calendarPane
- The CalendarPane shown in the Popup.
origSelectedItem
java.lang.Object origSelectedItem
- The original selected item.
generatedSelectedItem
java.lang.Object generatedSelectedItem
- The original selected item.
wrSelectedFrame
java.lang.ref.WeakReference<T> wrSelectedFrame
- the reference to the current selected frame.
icpContent
com.sibvisions.rad.ui.swing.ext.JVxDesktopPane.InternalContentPanel icpContent
- the internal content panel.
layout
com.sibvisions.rad.ui.swing.ext.JVxDesktopPane.InternalContentLayout layout
- the layout manager for the desktop pane.
tabs
JVxTabbedPane tabs
- the tabbed pane for tabbed mode.
auFrameCache
ArrayUtil<E> auFrameCache
- the list of currently added internal frames.
htFrameContent
java.util.Hashtable<K,V> htFrameContent
- the mapped content of internal frames in tab mode.
htContentFrame
java.util.Hashtable<K,V> htContentFrame
- the reverse map for content of internal frames in tab mode.
htFrames
java.util.Hashtable<K,V> htFrames
- the map for content of internal frames in frame.
displayMode
JVxDesktopPane.DisplayMode displayMode
- the current display mode.
bDragableTabs
boolean bDragableTabs
- the dragable option for tabs in tabbed mode.
iIgnoreFrameCalls
int iIgnoreFrameCalls
- this counter is needed to suppress frame delegation events.
iIgnoreToFront
int iIgnoreToFront
- this counter is needed for suppress toFront delegation calls.
bSetFocusOnlyOnce
boolean bSetFocusOnlyOnce
- the mark to call setFocus() only one time.
bIgnoreTabSelection
boolean bIgnoreTabSelection
- the flag indicates that the tab selection change should be completely ignored.
bIgnoreTabFocus
boolean bIgnoreTabFocus
- the flag indicates that the focus should not be changed when the tab selection changes.
lAltWhen
long lAltWhen
- the timestamp when Alt was pressed.
lCtrlWhen
long lCtrlWhen
- the timestamp when Ctrl was pressed.
bFrameSwitchAllowed
boolean bFrameSwitchAllowed
- this flag indicates if it's allowed to switch between frames (only used from processKeyBinding).
bNavigationKeyEnabled
boolean bNavigationKeyEnabled
- this flag indicates if it's allowed to navigate between the frames with the keyboard.
dataRow
IDataRow dataRow
- The DataRow to be edited.
columnName
java.lang.String columnName
- The column to be edited.
cellEditor
ICellEditor cellEditor
- The CellEditor.
cellFormatter
ICellFormatter cellFormatter
- The cellFormatListener.
cellEditorHandler
ICellEditorHandler<C> cellEditorHandler
- The used CellEditor.
focusableComponent
java.awt.Component focusableComponent
- The focusable component.
horizontalAlignment
int horizontalAlignment
- X Alignment.
verticalAlignment
int verticalAlignment
- Y Alignment.
translation
TranslationMap translation
- The translation mapping.
dummyEditor
javax.swing.JTextField dummyEditor
- Cell Editor started editing.
savingImmediate
boolean savingImmediate
- Tells, if the CellEditor should save immediate.
firstNotifyRepaintCall
boolean firstNotifyRepaintCall
- Tells, if notifyRepaint is called the first time.
isCancelling
boolean isCancelling
- Ignore Cancel call.
borderVisible
boolean borderVisible
- the borders visibility.
isNotified
boolean isNotified
- is notified.
editingStarted
boolean editingStarted
- Cell Editor started editing.
temporaryIsShowingState
boolean temporaryIsShowingState
- Trick out focus manager with temporary wrong showing state.
bTranslationEnabled
boolean bTranslationEnabled
- whether the translation is enabled.
buffer
java.awt.image.BufferedImage buffer
- the cached image (paint performance).
faIconDefinition
FontAwesome faIconDefinition
- the icon definition.
font
java.awt.Font font
- the current font.
color
java.awt.Color color
- the set color.
size
int size
- the set size.
width
int width
- the "real" width.
height
int height
- the real height.
image
java.awt.Image image
- the image of the icon.
iImageWidth
int iImageWidth
- the icon width.
iImageHeight
int iImageHeight
- the icon height.
iHorizontalAlign
int iHorizontalAlign
- the horizontal alignment of the image (default:
SwingConstants.CENTER).
iVerticalAlign
int iVerticalAlign
- the vertical alignment of the background image (default:
SwingConstants.CENTER).
bPreserveAspectRatio
boolean bPreserveAspectRatio
- if the aspect ratio of the image should be preserved.
conOriginal
java.awt.Container conOriginal
- the parent before the frame was added to the modal layer.
wrModalPreviousFocus
java.lang.ref.WeakReference<T> wrModalPreviousFocus
- the cache for previous focus components in modal mode.
wrInternFocus
java.lang.ref.WeakReference<T> wrInternFocus
- the cache for the current focus component (used for Tab Mode).
wrDefaultButton
java.lang.ref.WeakReference<T> wrDefaultButton
- the default button.
translation
TranslationMap translation
- the translation mapping.
panDisposedRoot
javax.swing.JPanel panDisposedRoot
- the root/content pane if disposed.
bModal
boolean bModal
- the modal option of the internal frame.
bKeepBlocking
boolean bKeepBlocking
- the blocking option of the internal frame.
bIgnoreRemove
boolean bIgnoreRemove
- the mark for avoiding removeNotify handling for modal frames.
bDisposed
boolean bDisposed
- the mark for dispose method call.
bOldIconifiable
java.lang.Boolean bOldIconifiable
- whether the frame was iconifiable before is was modal.
imgBack
javax.swing.ImageIcon imgBack
- the background image.
dividerAlignment
int dividerAlignment
- The divider alignment.
bUpdateUI
boolean bUpdateUI
- whether updateUI is active.
iPressed
int iPressed
- the tab where the mouse pressed event was fired.
iDragged
int iDragged
- the dragged tab index.
iClose
int iClose
- the tab with selected close icon.
iShowTab
int iShowTab
- the cache for invoke later tab showing.
auTabInfo
ArrayUtil<E> auTabInfo
- the cache for tab title and icon.
auTabListener
ArrayUtil<E> auTabListener
- the registered tab listeners.
vpScroll
javax.swing.JViewport vpScroll
- the viewport for a scroll tab layout.
bIgnoreSelection
boolean bIgnoreSelection
- mark to ignore the automatic selection of tabs.
bDragable
boolean bDragable
- mark to use draggable tabs.
bNavigationKeyEnabled
boolean bNavigationKeyEnabled
- this flag indicates if it's allowed to navigate between the tabs with the keyboard.
table
javax.swing.JTable table
- The JTable that shows the IDataBook.
dataBook
IDataBook dataBook
- The IDataBook to be shown.
columnView
ColumnView columnView
- The column view.
cellFormatter
ICellFormatter cellFormatter
- The cellFormatListener.
cellEditorHandler
ICellEditorHandler<C> cellEditorHandler
- The used CellEditor.
translation
TranslationMap translation
- The translation mapping.
rowHeight
int rowHeight
- The row height. Automatic row height is set with -1.
minRowHeight
int minRowHeight
- The minimal row height.
maxRowHeight
int maxRowHeight
- The minimal row height.
enterNavigationMode
int enterNavigationMode
- The enter navigation mode.
tabNavigationMode
int tabNavigationMode
- The enter navigation mode.
lastColumnWidth
int lastColumnWidth
- lastColumnWidth.
sortOnHeaderEnabled
boolean sortOnHeaderEnabled
- True, if sort on header click is enabled.
autoFillEmptySpace
boolean autoFillEmptySpace
- True, empty space is automatic filled with existing columns.
editable
boolean editable
- True, if the editable is shown.
showSelection
boolean showSelection
- True, if the selection is shown.
showFocusRect
boolean showFocusRect
- True, if the focus rect is shown.
firstNotifyRepaintCall
boolean firstNotifyRepaintCall
- Tells, if notifyRepaint is called the first time.
editingStarted
boolean editingStarted
- Cell Editor started editing.
correctMouseSelection
boolean correctMouseSelection
- Mouse pressed.
ignoreEvent
boolean ignoreEvent
- Ignoring Events.
ignoreMousePressed
boolean ignoreMousePressed
- Ignoring Events.
outOfSync
boolean outOfSync
- DataBook is out of sync. Used for doRepaint to detect reload.
isNotified
boolean isNotified
- is notified.
calculateMinSize
boolean calculateMinSize
- calculateMinSize.
mouseEventOnSelectedCell
boolean mouseEventOnSelectedCell
- true, if the mouse event is on selected cell.
ignoreFocusEvent
boolean ignoreFocusEvent
- Ignoring Events.
bTranslationEnabled
boolean bTranslationEnabled
- whether the translation is enabled.
tableControl
JVxTable tableControl
- The parent component.
rowMargin
int rowMargin
- The row margin.
columnMargin
int columnMargin
- The column margin.
leftIndent
int leftIndent
- The left indent.
leftSpacer
javax.swing.JComponent leftSpacer
- The left indent.
icon
JVxIcon icon
- The icon renderer.
cellEditorComponent
java.awt.Component cellEditorComponent
- The icon renderer.
focusComponent
java.awt.Component focusComponent
- The focus component.
eventObject
java.util.EventObject eventObject
- KeyEvent to deliver.
isDirectEditor
boolean isDirectEditor
- true, if it is a direct editor.
keyEvent
java.awt.event.KeyEvent keyEvent
- KeyEvent to deliver.
mouseEvent
java.awt.event.MouseEvent mouseEvent
- KeyEvent to deliver.
tableControl
JVxTable tableControl
- The rowDefinition, that provides the data.
rowHeight
int rowHeight
- The row height.
calculateHeightAndWidth
boolean calculateHeightAndWidth
- The row height.
columnView
ColumnView columnView
- The ColumnView to be shown.
columnViewCount
int columnViewCount
- The columnViewCount.
ignoreSetSelectedColumn
boolean ignoreSetSelectedColumn
- true, if setSelectedColumnshould not be called on databook.
ignorePropertyChange
boolean ignorePropertyChange
- true, if property change should be ignored.
tableControl
JVxTable tableControl
- The Table for this model.
table
javax.swing.JTable table
- The Table for this model.
dataBook
IDataBook dataBook
- The IDataBook, that provides the data.
lineColor
java.awt.Color lineColor
- true, if strike through should be painted.
strikeThrough
boolean strikeThrough
- the line color.
strikeThrough
boolean strikeThrough
- true, if strike through should be painted.
layout
com.sibvisions.rad.ui.swing.ext.JVxToolBar.InternalToolBarLayout layout
- the toolbar layout if no user-defined/look and feel layout is set.
bSynthUI
boolean bSynthUI
- flag that identifies that a special layout is in use.
panContent
javax.swing.JPanel panContent
- the content panel.
toolbar
JVxToolBar toolbar
- the top toolbar.
sTempConstraint
java.lang.String sTempConstraint
- temporary constraint before adding toolbar.
sAreaConstraint
java.lang.String sAreaConstraint
- the current area constraint.
bCheckSeparatorVisibility
boolean bCheckSeparatorVisibility
- whether separator visibility should be checked.
tree
javax.swing.JTree tree
- The JTree that shows the IDataBooks.
dataBooks
IDataBook[] dataBooks
- The IDataBook to be shown.
selfJoinedDataBook
IDataBook selfJoinedDataBook
- The selfjoined databooks.
activeDataBook
IDataBook activeDataBook
- The selfjoined databooks.
cellFormatter
ICellFormatter cellFormatter
- The cellFormatListener.
nodeFormatter
INodeFormatter nodeFormatter
- The cellFormatListener.
translation
TranslationMap translation
- The translation mapping.
maxLength
int maxLength
- The maximum length of not selfjoined databooks.
editable
boolean editable
- True, if the editable is shown.
detectEndNode
boolean detectEndNode
- True, if the end node should be detected is shown.
firstNotifyRepaintCall
boolean firstNotifyRepaintCall
- Tells, if notifyRepaint is called the first time.
doNotScrollToSelectedNode
boolean doNotScrollToSelectedNode
- True, if the end node should be detected is shown.
ignoreEvent
boolean ignoreEvent
- Ignoring Events.
isNotified
boolean isNotified
- is notified.
mouseEventOnSelectedCell
boolean mouseEventOnSelectedCell
- true, if the mouse event is on selected cell.
bTranslationEnabled
boolean bTranslationEnabled
- whether the translation is enabled.
|
Package com.sibvisions.rad.ui.swing.ext.celleditor |
cellEditor
JVxLinkedCellEditor cellEditor
- The CellEditor, that created this handler.
cellEditorListener
ICellFormatterEditorListener cellEditorListener
- The CellEditorListener to inform, if editing is started or completed.
dataRow
IDataRow dataRow
- The data row that is edited.
columnIndex
int columnIndex
- The column index.
columnNames
java.lang.String[] columnNames
- The column names.
referencedColumnNames
java.lang.String[] referencedColumnNames
- The column names referenced.
columnName
java.lang.String columnName
- The column name of the edited column.
referencedColumnName
java.lang.String referencedColumnName
- The column name referenced by the edited column.
searchColumns
java.lang.String[] searchColumns
- The search Columns.
additionalClearColumns
java.lang.String[] additionalClearColumns
- The search Columns.
referencedSearchColumns
java.lang.String[] referencedSearchColumns
- The referenced search Columns.
referencedDataBook
IDataBook referencedDataBook
- The DataBook referenced by the edited column.
cellEditorComponent
JVxComboBase cellEditorComponent
- The physical component that is added to the parent container.
dynamicAlignment
IAlignmentConstants dynamicAlignment
- Dynamic alignment.
table
JVxTable table
- The table shown in the popup.
ignoreEvent
boolean ignoreEvent
- Tells the listener to ignore the events.
firstEditingStarted
boolean firstEditingStarted
- True, if it's the first editing started event.
popupChanged
boolean popupChanged
- True, if it's the first editing started event.
displayColumnName
java.lang.String displayColumnName
- The name of the displayed column.
|
Package com.sibvisions.rad.ui.swing.ext.cellrenderer |
|
Package com.sibvisions.rad.ui.swing.ext.event |
iOldIndex
int iOldIndex
- The affected old tab index.
iNewIndex
int iNewIndex
- The affected new tab index.
lWhen
long lWhen
- The input event's Time stamp in UTC format. The time stamp indicates when the input event was created.
iModifiers
int iModifiers
- The state of the modifier mask at the time the input event was fired.
|
Package com.sibvisions.rad.ui.swing.ext.focus |
tabIndexFocusTraversalPolicy
TabIndexFocusTraversalPolicy tabIndexFocusTraversalPolicy
- the original comparator.
originalComperator
java.util.Comparator<T> originalComperator
- Original comperator.
centerComponent
javax.swing.JComponent centerComponent
- Center component for compare.
|
Package com.sibvisions.rad.ui.swing.ext.text |
dateUtil
DateUtil dateUtil
- The date util.
numberUtil
NumberUtil numberUtil
- The number util.
dataType
IDataType dataType
- The possible underlaying datatype.
documentFilter
com.sibvisions.rad.ui.swing.ext.text.NumberFormatter.NumberDocumentFilter documentFilter
- The document filter.
|
Package com.sibvisions.rad.ui.swing.impl |
launcher
SwingApplet.SwingAppletLauncher launcher
- the ILauncher that represents this applet.
frame
java.awt.Frame frame
- the frame of the applet, if started via jnlp.
jscript
JSBridge jscript
- the javascript bridge for the browser.
uploadThreads
java.util.Vector<E> uploadThreads
- Speichert alle Upload Threads.
thStartup
java.lang.Thread thStartup
- the startup thread when the appliet was notified.
lisApplet
ArrayUtil<E> lisApplet
- the old window listeners, if available.
bNotified
boolean bNotified
- tha flag indicates that addNotify was called.
bApplicationStarted
boolean bApplicationStarted
- tha flag indicates whether the application is already notified being started.
|
Package com.sibvisions.util |
array
java.lang.Object[] array
- The array buffer into which the elements of the ArrayList are stored.
The capacity of the ArrayUtil is the length of this array buffer.
It is an object so also primitive arrays can be handled.
offset
int offset
- The first index where the elements are stored.
size
int size
- The size of the ArrayUtil (the number of elements it contains).
auChanges
ArrayUtil<E> auChanges
- the cache for all changed key/value pairs.
vOrderedKeys
java.util.Vector<E> vOrderedKeys
- the list of keys to keep the add/put order.
|
Package com.sibvisions.util.security |
|
Package com.sibvisions.util.xml |
readObject
private void readObject(java.io.ObjectInputStream pStream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reads this Object from the given stream.
- Throws:
java.io.IOException - if an IOException occurs.
java.lang.ClassNotFoundException - if a class does not exist.
writeObject
private void writeObject(java.io.ObjectOutputStream pObjectOutputStream)
throws java.io.IOException
- Writes this Object to the given stream.
- Throws:
java.io.IOException - if an IOException occurs.
readObject
private void readObject(java.io.ObjectInputStream pObjectInputStream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reads this Object to the pObjectInputStream.
- Throws:
java.io.IOException - if an IOException occurs.
java.lang.ClassNotFoundException - if a class does not exist.
writeObject
private void writeObject(java.io.ObjectOutputStream pObjectOutputStream)
throws java.io.IOException
- Writes this Object to the ObjectOutputStream.
- Throws:
java.io.IOException - if an IOException occurs.
fileName
java.lang.String fileName
- the simple file name.
fileName
java.lang.String fileName
- the content.
objectCacheKey
java.lang.Object objectCacheKey
- the key to find the content.
timeout
long timeout
- the current cache timeout.
sName
java.lang.String sName
- The name of the
ColumnDefinition.
ctDataType
IDataType ctDataType
- The
DataType of the ColumnDefinition.
sLabel
java.lang.String sLabel
- The label of the
ColumnDefinition.
bNullable
boolean bNullable
- If this
ColumnDefinition can be null.
sComment
java.lang.String sComment
- The comment of the
ColumnDefinition.
oDefault
java.lang.Object oDefault
- the default value for the column.
oAllowedValues
java.lang.Object[] oAllowedValues
- the allowed values for the column.
bReadonly
boolean bReadonly
- If this
ColumnDefinition is read only.
bWriteable
boolean bWriteable
- If this
ColumnDefinition should be stored.
bFilterable
boolean bFilterable
- If this
ColumnDefinition should be filtered be generic filters.
iWidth
int iWidth
- The size of this
ColumnDefinition, which is used in GUI control to display.
bMoveable
boolean bMoveable
- Indicates if this
ColumnDefinition can be moved.
bResizeable
boolean bResizeable
- Indicates if this
ColumnDefinition can be resized.
bSortable
boolean bSortable
- Indicates if this
ColumnDefinition can be sorted.
auColumnDefinitions
ArrayUtil<E> auColumnDefinitions
- Array of all
ColumnDefinition's.
hmColumnDefinitionsMap
java.util.Map<K,V> hmColumnDefinitionsMap
- Maps column names to indexes of the column definition.
hmColumnArrayDefinitionsMap
IntHashMap<T> hmColumnArrayDefinitionsMap
- Maps column names to indexes of the column definition.
hmRowDefinitionsMap
IntHashMap<T> hmRowDefinitionsMap
- Maps column names to indexes of the column definition.
saColumnNames
java.lang.String[] saColumnNames
String[] of all all column names.
saPKColumnNames
java.lang.String[] saPKColumnNames
String[] of all primary key columns.
saColumnNames
java.lang.String[] saColumnNames
- The boolean
Array which defines if the corresponding (same index)
column name is sorted ascending (=true) or descending (=false).
baAscending
boolean[] baAscending
- The column names to sort.
|
Package javax.rad.model.condition |
oValue
java.lang.Object oValue
- The value to use for the compare.
sColumnName
java.lang.String sColumnName
- The column to use for the compare.
bIgnoreNull
boolean bIgnoreNull
- Determines, if null values will be ignored.
searchValue
java.lang.Object searchValue
- The last search value.
searchTransformed
java.lang.String searchTransformed
- The transformed search value.
searchValue
java.lang.Object searchValue
- The last search value.
searchTransformed
java.lang.String searchTransformed
- The transformed search value.
condition
ICondition condition
ICondition on which the not operator should be applied.
auConditions
ArrayUtil<E> auConditions
- list of all operands.
|
Package javax.rad.model.datatype |
iScale
int iScale
- The scale of the
BigDecimalDataType.
iPrecision
int iPrecision
- The precision of the
BigDecimalDataType.
bSigned
boolean bSigned
- Indicates if the
BigDecimalDataType is signed.
numberUtil
NumberUtil numberUtil
- The cell renderer.
iSize
int iSize
- The Size of the
DataType.
bSigned
boolean bSigned
- Indicates if the
BigDecimalDataType is signed.
numberUtil
NumberUtil numberUtil
- The cell renderer.
translator
ITranslator translator
- The translator for translating the text.
autoTrimEnd
boolean autoTrimEnd
- Enable autotrim to avoid whitespaces at the begin and end of texts.
dateUtil
DateUtil dateUtil
- The cell renderer.
|
Package javax.rad.model.reference |
columnNames
java.lang.String[] columnNames
- The source column names of the
ColumnMapping.
referencedColumnNames
java.lang.String[] referencedColumnNames
- The referenced column names of the
ColumnMapping.
drReferencedDataBook
IDataBook drReferencedDataBook
- The referenced (master)
IDataBook of the ReferenceDefinition.
bConnected
boolean bConnected
- Indicates if the source is connected, and changes are not allowed. If its
connected to an open
IDataBook, then the value is true.
sReferencedStorage
java.lang.String sReferencedStorage
- The "name" of referenced (master)
IStorage of the StorageReferenceDefinition.
|
Package javax.rad.persist |
sName
java.lang.String sName
- The name of the
ColumnMetaData.
sLabel
java.lang.String sLabel
- The default label of the
ColumnMetaData.
iTypeIdentifier
int iTypeIdentifier
- The data type identifier of the
ColumnMetaData.
bNullable
boolean bNullable
- If this
ColumnDefinition can be null.
iPrecision
int iPrecision
- The precision/size of this
ColumnMetaData.
iScale
int iScale
- The scale of this
ColumnMetaData.
bSigned
boolean bSigned
- Determines if this
ColumnMetaData is signed.
bWriteable
boolean bWriteable
- If this
ColumnMetaData is writeable.
bCalculated
boolean bCalculated
- If this
ColumnMetaData is calculated.
bAutoIncrement
boolean bAutoIncrement
- If this
ColumnMetaData is an auto increment column.
bFetchLargeObjectsLazy
boolean bFetchLargeObjectsLazy
- If this
ColumnMetaData fetches larger objects lazily.
oDefault
java.lang.Object oDefault
- the default value for the column.
oAllowedValues
java.lang.Object[] oAllowedValues
- the allowed values for the column.
srdLinkReference
StorageReferenceDefinition srdLinkReference
- The link reference for a server side dropdown list (automatic linked celleditor).
cachedDataType
IDataType cachedDataType
- Cached data type for performance.
auColumnMetaData
ArrayUtil<E> auColumnMetaData
- The array of all
ColumnMetaData.
hmColumnMetaDataMap
java.util.Map<K,V> hmColumnMetaDataMap
- Maps column names to indexes of the column definition.
saPrimaryKeyColumnNames
java.lang.String[] saPrimaryKeyColumnNames
- The primary column names.
saRepresentationColumnNames
java.lang.String[] saRepresentationColumnNames
- The Representation column names.
saAutoIncrementColumnNames
java.lang.String[] saAutoIncrementColumnNames
- The auto increment column names.
faFeatures
MetaData.Feature[] faFeatures
- The list of supported features.
connection
AbstractConnection connection
- the connection, if known.
Copyright © 2009 SIB Visions GmbH. All Rights Reserved.