Serialized Form


Package com.sibvisions.rad.model.mem

Class com.sibvisions.rad.model.mem.ChangeableDataRow extends DataRow implements Serializable

Class com.sibvisions.rad.model.mem.DataRow extends java.lang.Object implements Serializable

Serialized Fields

rdRowDefinition

IRowDefinition rdRowDefinition
The RowDefinition of this DataRow.


oaStorage

java.lang.Object[] oaStorage
The storage for this DataRow.

Class com.sibvisions.rad.model.mem.MemDataBook extends ChangeableDataRow implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.model.remote.RemoteDataBook extends MemDataBook implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.persist.AbstractStorage.AllFetchedList extends ArrayUtil<E> implements Serializable

Class com.sibvisions.rad.persist.StorageDataBook extends RemoteDataBook implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.server.http.DownloadServlet extends ResourceServlet implements Serializable

Class com.sibvisions.rad.server.http.ResourceServlet extends javax.servlet.http.HttpServlet implements Serializable

Class com.sibvisions.rad.server.http.ServletServer extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

server

Server server
request server.

Class com.sibvisions.rad.server.http.UploadServlet extends ResourceServlet implements Serializable


Package com.sibvisions.rad.ui.swing.ext

Class com.sibvisions.rad.ui.swing.ext.JVxButton extends javax.swing.JButton implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxCalendarPane extends javax.swing.JPanel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxChart extends javax.swing.JPanel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxChart.DataBookCategoryDataset extends DefaultCategoryDataset implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxChart.DataBookXYDataset extends AbstractIntervalXYDataset implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxCheckBox extends javax.swing.JCheckBox implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxCheckBoxMenuItem extends javax.swing.JCheckBoxMenuItem implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxChoice extends javax.swing.JTextField implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxComboBase extends javax.swing.JComboBox implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxDateCombo extends JVxComboBase implements Serializable

Serialized Fields

dateFormatter

DateFormatter dateFormatter
The date formatter used for formatting the date.

Class com.sibvisions.rad.ui.swing.ext.JVxDateCombo.DateComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxDesktopManager extends javax.swing.DefaultDesktopManager implements Serializable

Serialized Fields

wrSelectedFrame

java.lang.ref.WeakReference<T> wrSelectedFrame
the reference to the current selected frame.

Class com.sibvisions.rad.ui.swing.ext.JVxDesktopPane extends javax.swing.JDesktopPane implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxEditor extends javax.swing.JPanel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxFontAwesomeIcon extends javax.swing.ImageIcon implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxIcon extends javax.swing.JComponent implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxInternalFrame extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

imgBack

javax.swing.ImageIcon imgBack
the background image.

Class com.sibvisions.rad.ui.swing.ext.JVxScrollPane extends javax.swing.JScrollPane implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxSplitPane extends javax.swing.JSplitPane implements Serializable

Serialized Fields

dividerAlignment

int dividerAlignment
The divider alignment.


bUpdateUI

boolean bUpdateUI
whether updateUI is active.

Class com.sibvisions.rad.ui.swing.ext.JVxSplitPane.CoveragePanel extends javax.swing.JPanel implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxTabbedPane extends javax.swing.JTabbedPane implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTable extends JVxScrollPane implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.CellEditorPane extends javax.swing.JComponent implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.DataBookTableColumnModel extends javax.swing.table.DefaultTableColumnModel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.DataBookTableModel extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.StrikeThroughEmptyBorder extends javax.swing.border.EmptyBorder implements Serializable

Serialized Fields

lineColor

java.awt.Color lineColor
true, if strike through should be painted.


strikeThrough

boolean strikeThrough
the line color.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.StrikeThroughLineBorder extends javax.swing.border.LineBorder implements Serializable

Serialized Fields

strikeThrough

boolean strikeThrough
true, if strike through should be painted.

Class com.sibvisions.rad.ui.swing.ext.JVxToggleButton extends javax.swing.JToggleButton implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxToolBar extends javax.swing.JToolBar implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxToolBarPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTree extends JVxScrollPane implements Serializable

Serialized Fields

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.

Class com.sibvisions.rad.ui.swing.ext.JVxTree.DataRowTreeCellRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable


Package com.sibvisions.rad.ui.swing.ext.celleditor

Class com.sibvisions.rad.ui.swing.ext.celleditor.JVxLinkedCellEditor.CellEditorHandler extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.ui.swing.ext.cellrenderer.JVxCheckBoxRenderer extends javax.swing.JCheckBox implements Serializable

Class com.sibvisions.rad.ui.swing.ext.cellrenderer.JVxChoiceRenderer extends JVxChoice implements Serializable

Class com.sibvisions.rad.ui.swing.ext.cellrenderer.JVxIconRenderer extends JVxIcon implements Serializable

Class com.sibvisions.rad.ui.swing.ext.cellrenderer.JVxRendererContainer extends javax.swing.JPanel implements Serializable


Package com.sibvisions.rad.ui.swing.ext.event

Class com.sibvisions.rad.ui.swing.ext.event.TabEvent extends java.util.EventObject implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.ui.swing.ext.focus.TabIndexComparator extends java.lang.Object implements Serializable

Serialized Fields

tabIndexFocusTraversalPolicy

TabIndexFocusTraversalPolicy tabIndexFocusTraversalPolicy
the original comparator.

Class com.sibvisions.rad.ui.swing.ext.focus.TabIndexFocusTraversalPolicy extends javax.swing.LayoutFocusTraversalPolicy implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.ui.swing.ext.text.DateFormatter extends javax.swing.JFormattedTextField.AbstractFormatter implements Serializable

Serialized Fields

dateUtil

DateUtil dateUtil
The date util.

Class com.sibvisions.rad.ui.swing.ext.text.NumberFormatter extends javax.swing.JFormattedTextField.AbstractFormatter implements Serializable

Serialized Fields

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

Class com.sibvisions.rad.ui.swing.impl.SwingApplet extends javax.swing.JApplet implements Serializable

Serialized Fields

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

Class com.sibvisions.util.ArrayUtil extends java.util.AbstractList<E> implements Serializable

Serialized Fields

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).

Class com.sibvisions.util.ChangedHashtable extends java.util.Hashtable<K,V> implements Serializable

Serialized Fields

auChanges

ArrayUtil<E> auChanges
the cache for all changed key/value pairs.

Class com.sibvisions.util.OrderedHashtable extends java.util.Hashtable<K,V> implements Serializable

Serialized Fields

vOrderedKeys

java.util.Vector<E> vOrderedKeys
the list of keys to keep the add/put order.


Package com.sibvisions.util.security

Class com.sibvisions.util.security.SecurityProvider extends java.security.Provider implements Serializable


Package com.sibvisions.util.xml

Class com.sibvisions.util.xml.XmlNode extends java.lang.Object implements Serializable

Serialization Methods

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.

Package javax.rad.io

Class javax.rad.io.FileHandle extends java.lang.Object implements Serializable

Serialization Methods

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.
Serialized Fields

fileName

java.lang.String fileName
the simple file name.

Class javax.rad.io.RemoteFileHandle extends java.lang.Object implements Serializable

Serialized Fields

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.


Package javax.rad.model

Class javax.rad.model.ColumnDefinition extends java.lang.Object implements Serializable

Serialized Fields

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.

Class javax.rad.model.ModelException extends java.lang.Exception implements Serializable

Class javax.rad.model.RowDefinition extends java.lang.Object implements Serializable

Serialized Fields

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.

Class javax.rad.model.SortDefinition extends java.lang.Object implements Serializable

Serialized Fields

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

Class javax.rad.model.condition.And extends OperatorCondition implements Serializable

Class javax.rad.model.condition.BaseCondition extends java.lang.Object implements Serializable

Class javax.rad.model.condition.CompareCondition extends BaseCondition implements Serializable

Serialized Fields

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.

Class javax.rad.model.condition.ContainsIgnoreCase extends LikeIgnoreCase implements Serializable

Class javax.rad.model.condition.Equals extends CompareCondition implements Serializable

Class javax.rad.model.condition.Greater extends CompareCondition implements Serializable

Class javax.rad.model.condition.GreaterEquals extends CompareCondition implements Serializable

Class javax.rad.model.condition.Less extends CompareCondition implements Serializable

Class javax.rad.model.condition.LessEquals extends CompareCondition implements Serializable

Class javax.rad.model.condition.Like extends CompareCondition implements Serializable

Serialized Fields

searchValue

java.lang.Object searchValue
The last search value.


searchTransformed

java.lang.String searchTransformed
The transformed search value.

Class javax.rad.model.condition.LikeIgnoreCase extends CompareCondition implements Serializable

Serialized Fields

searchValue

java.lang.Object searchValue
The last search value.


searchTransformed

java.lang.String searchTransformed
The transformed search value.

Class javax.rad.model.condition.LikeReverse extends CompareCondition implements Serializable

Class javax.rad.model.condition.LikeReverseIgnoreCase extends CompareCondition implements Serializable

Class javax.rad.model.condition.Not extends BaseCondition implements Serializable

Serialized Fields

condition

ICondition condition
ICondition on which the not operator should be applied.

Class javax.rad.model.condition.OperatorCondition extends BaseCondition implements Serializable

Serialized Fields

auConditions

ArrayUtil<E> auConditions
list of all operands.

Class javax.rad.model.condition.Or extends OperatorCondition implements Serializable

Class javax.rad.model.condition.StartsWithIgnoreCase extends LikeIgnoreCase implements Serializable


Package javax.rad.model.datatype

Class javax.rad.model.datatype.BigDecimalDataType extends DataType implements Serializable

Serialized Fields

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.

Class javax.rad.model.datatype.BinaryDataType extends DataType implements Serializable

Class javax.rad.model.datatype.BooleanDataType extends DataType implements Serializable

Class javax.rad.model.datatype.DataType extends java.lang.Object implements Serializable

Serialized Fields

iSize

int iSize
The Size of the DataType.

Class javax.rad.model.datatype.LongDataType extends DataType implements Serializable

Serialized Fields

bSigned

boolean bSigned
Indicates if the BigDecimalDataType is signed.


numberUtil

NumberUtil numberUtil
The cell renderer.

Class javax.rad.model.datatype.ObjectDataType extends DataType implements Serializable

Class javax.rad.model.datatype.StringDataType extends DataType implements Serializable

Serialized Fields

translator

ITranslator translator
The translator for translating the text.


autoTrimEnd

boolean autoTrimEnd
Enable autotrim to avoid whitespaces at the begin and end of texts.

Class javax.rad.model.datatype.TimestampDataType extends DataType implements Serializable

Serialized Fields

dateUtil

DateUtil dateUtil
The cell renderer.


Package javax.rad.model.reference

Class javax.rad.model.reference.ColumnMapping extends java.lang.Object implements Serializable

Serialized Fields

columnNames

java.lang.String[] columnNames
The source column names of the ColumnMapping.


referencedColumnNames

java.lang.String[] referencedColumnNames
The referenced column names of the ColumnMapping.

Class javax.rad.model.reference.ReferenceDefinition extends ColumnMapping implements Serializable

Serialized Fields

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.

Class javax.rad.model.reference.StorageReferenceDefinition extends ColumnMapping implements Serializable

Serialized Fields

sReferencedStorage

java.lang.String sReferencedStorage
The "name" of referenced (master) IStorage of the StorageReferenceDefinition.


Package javax.rad.persist

Class javax.rad.persist.ColumnMetaData extends java.lang.Object implements Serializable

Serialized Fields

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.

Class javax.rad.persist.DataSourceException extends ModelException implements Serializable

Class javax.rad.persist.MetaData extends java.lang.Object implements Serializable

Serialized Fields

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.


Package javax.rad.remote

Class javax.rad.remote.ChangePasswordException extends CommunicationException implements Serializable

Class javax.rad.remote.CommunicationException extends java.lang.RuntimeException implements Serializable

Serialized Fields

connection

AbstractConnection connection
the connection, if known.

Class javax.rad.remote.ConnectionException extends CommunicationException implements Serializable

Class javax.rad.remote.SessionCancelException extends SessionExpiredException implements Serializable

Class javax.rad.remote.SessionExpiredException extends CommunicationException implements Serializable

Class javax.rad.remote.UnauthorizedException extends CommunicationException implements Serializable


Package javax.rad.server

Class javax.rad.server.ExpiredException extends java.lang.SecurityException implements Serializable

Class javax.rad.server.InactiveException extends java.lang.SecurityException implements Serializable

Class javax.rad.server.InvalidPasswordException extends java.lang.SecurityException implements Serializable

Class javax.rad.server.NotFoundException extends java.lang.SecurityException implements Serializable

Class javax.rad.server.UnknownObjectException extends java.lang.RuntimeException implements Serializable


Package javax.rad.ui

Class javax.rad.ui.UIException extends java.lang.RuntimeException implements Serializable


Package javax.rad.util

Class javax.rad.util.SilentAbortException extends java.lang.RuntimeException implements Serializable



Copyright © 2009 SIB Visions GmbH. All Rights Reserved.