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 Object implements Serializable

Serialized Fields

rdRowDefinition

IRowDefinition rdRowDefinition
The RowDefinition of this DataRow.


oaStorage

Object[] oaStorage
The storage for this DataRow.


eventValuesChanged

DataRowHandler eventValuesChanged
The EventHandler for the values changed event.


auControls

ArrayUtil<E> auControls
The ArrayUtil of all IRepaintListeners.

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


rdMasterReference

ReferenceDefinition rdMasterReference
The ReferenceDefinition to the master IDataBook.


rdTreeRootReference

ReferenceDefinition rdTreeRootReference
The ReferenceDefinition to the master IDataBook.


saTreeRootMasterColumnNames

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.


htDataPagesCache

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.


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.


eventBeforeColumnSelected

DataBookHandler eventBeforeColumnSelected
The EventHandler for before selected event.


eventAfterColumnSelected

DataBookHandler eventAfterColumnSelected
The EventHandler for after selected event.


sName

String sName
Name of the MemDataBook.


sSelectedColumn

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.


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.


Package com.sibvisions.rad.model.remote

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

Serialized Fields

saMetaDataColumnNames

String[] saMetaDataColumnNames
It holds the column names of the server column meta data in the client RowDefinition.


saBlockFetchColumnNames

String[] saBlockFetchColumnNames
It holds the column names of the server column meta data in the client RowDefinition.


saBlockFetchReferencedColumnNames

String[] saBlockFetchReferencedColumnNames
It holds the column names of the server column meta data in the client RowDefinition.


htFetchedRowsForBlock

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


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 HttpServlet implements Serializable

Class com.sibvisions.rad.server.http.ServletServer extends 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 JButton implements Serializable

Serialized Fields

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 JPanel implements Serializable

Serialized Fields

years

JSpinner years
Spinner for changing years.


months

JSpinner months
Spinner for changing months.


time

JSpinner time
Spinner for changing time.


spacer

JLabel spacer
Spacer left top.


weekDays

JLabel[] weekDays
Labels for week days.


weeks

JLabel[] weeks
Labels for weeks.


days

JToggleButton[] days
Labels for days.


calendar

GregorianCalendar calendar
GregorianCalendar for date selection.


selectedIndex

int selectedIndex
The selected Day.


ignoreEvent

boolean ignoreEvent
true, if the date changes occurs setting internal state.


date

Date date
The current selected date and time.


actionCommand

String actionCommand
The current actionCommand.


translation

TranslationMap translation
The translation mapping.

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

Serialized Fields

chartPanel

ChartPanel chartPanel
The chart panel.


dataset

JVxChart.DataBookXYDataset dataset
The chart panel.


vaX

ValueAxis vaX
the x axis.


vaY

ValueAxis vaY
the x axis.


dataBook

IDataBook dataBook
The DataBook to be shown.


chartStyle

int chartStyle
The chart style.


sTitle

String sTitle
The title.


sXTitle

String sXTitle
The x axis title.


sYTitle

String sYTitle
The y axis title.


sXColumnName

String sXColumnName
The x column name.


saYColumnNames

String[] saYColumnNames
The y column names.


tmpTranslation

TranslationMap tmpTranslation
The translation mapping.


bFirstNotifyRepaintCall

boolean bFirstNotifyRepaintCall
Tells, if notifyRepaint is called the first time.

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

Serialized Fields

chart

JVxChart chart
The associated chart.


dataBook

IDataBook dataBook
Column names.


xColumnName

String xColumnName
Column names.


yColumnNames

String[] yColumnNames
Column names.


bDateAxis

boolean bDateAxis
Date axis.

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

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

Serialized Fields

allowedValues

Object[] allowedValues
The list of allowed values.


images

Image[] images
The list of allowed values.


cursor

Cursor cursor
The cursor.


defaultImage

Image defaultImage
The default image shown when selectedIndex is -1.


innerBackground

Color innerBackground
The selected index.


innerBorder

Border innerBorder
The selected index.


imageBorderVisible

boolean imageBorderVisible
The selected index.


paintSize

Dimension paintSize
The selected index.


imageWidth

int imageWidth
The max width of the images.


imageHeight

int imageHeight
The max height of the images.


imageSize

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

String actionCommand
The action command.

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

Serialized Fields

internalPopup

JPopupMenu internalPopup
the internal popup menu.


ignorePopupMenuEvents

boolean ignorePopupMenuEvents
the internal popup menu.


internalButton

JButton internalButton
the internal popup menu.


buttonEnabled

boolean buttonEnabled
true if the button should be enabled.


doNotCancelPopupComponents

List<E> doNotCancelPopupComponents
the components that does not cancel the popup.


windowAncestor

Window windowAncestor
the windowAncestor of this component.


isPermanentDeactivated

boolean isPermanentDeactivated
Determines wether the windowDeactivated is permanent.


doNotCancelPopup

Object doNotCancelPopup
the the client property doNotCancelPopup.


popupComponent

JComponent popupComponent
the popup component.


editorComponent

JTextComponent editorComponent
the editor component.


popupSize

Dimension popupSize
the popup size.


selectedItem

Object selectedItem
selectedItem.


translation

TranslationMap translation
The translation mapping.


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.

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 AbstractListModel implements Serializable

Serialized Fields

comboBase

JVxComboBase comboBase
The JVxComboBase that uses this Model.


calendarPane

JVxCalendarPane calendarPane
The CalendarPane shown in the Popup.


origSelectedItem

Object origSelectedItem
The original selected item.


generatedSelectedItem

Object generatedSelectedItem
The original selected item.

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

Serialized Fields

wrSelectedFrame

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

Class com.sibvisions.rad.ui.swing.ext.JVxDesktopPane extends 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

Hashtable<K,V> htFrameContent
the mapped content of internal frames in tab mode.


htContentFrame

Hashtable<K,V> htContentFrame
the reverse map for content of internal frames in tab 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 JPanel implements Serializable

Serialized Fields

dataRow

IDataRow dataRow
The DataRow to be edited.


columnName

String columnName
The column to be edited.


cellEditor

ICellEditor cellEditor
The CellEditor.


cellFormatter

ICellFormatter cellFormatter
The cellFormatListener.


cellEditorHandler

ICellEditorHandler<C> cellEditorHandler
The used CellEditor.


translation

TranslationMap translation
The translation mapping.


dummyEditor

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.


isNotified

boolean isNotified
is notified.


editingStarted

boolean editingStarted
Cell Editor started editing.

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

Serialized Fields

image

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

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

Serialized Fields

conOriginal

Container conOriginal
the parent before the frame was added to the modal layer.


wrModalPreviousFocus

WeakReference<T> wrModalPreviousFocus
the cache for previous focus components in modal mode.


wrInternFocus

WeakReference<T> wrInternFocus
the cache for the current focus component (used for Tab Mode).


wrDefaultButton

WeakReference<T> wrDefaultButton
the default button.


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

Boolean bOldIconifiable
whether the frame was iconifiable before is was modal.

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

Serialized Fields

imgBack

ImageIcon imgBack
the background image.

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

Class com.sibvisions.rad.ui.swing.ext.JVxSplitPane extends 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 JPanel implements Serializable

Class com.sibvisions.rad.ui.swing.ext.JVxTabbedPane extends 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

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

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.


sortOnHeaderEnabled

boolean sortOnHeaderEnabled
True, if sort on header click is enabled.


autoFillEmptySpace

boolean autoFillEmptySpace
True, empty space is automatic filled with existing columns.


enterNavigationMode

int enterNavigationMode
The enter navigation mode.


tabNavigationMode

int tabNavigationMode
The enter navigation mode.


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.


isNotified

boolean isNotified
is notified.


calculateMinSize

boolean calculateMinSize
calculateMinSize.


lastColumnWidth

int lastColumnWidth
lastColumnWidth.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.CellEditorPane extends 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 column margin.


keyEvent

KeyEvent keyEvent
KeyEvent to deliver.

Class com.sibvisions.rad.ui.swing.ext.JVxTable.DataBookTableColumnModel extends 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 AbstractTableModel implements Serializable

Serialized Fields

tableControl

JVxTable tableControl
The Table for this model.


table

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 EmptyBorder implements Serializable

Serialized Fields

lineColor

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 LineBorder implements Serializable

Serialized Fields

strikeThrough

boolean strikeThrough
true, if strike through should be painted.

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

Class com.sibvisions.rad.ui.swing.ext.JVxToolBar extends 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 JPanel implements Serializable

Serialized Fields

panContent

JPanel panContent
the content panel.


toolbar

JVxToolBar toolbar
the top toolbar.


sTempConstraint

String sTempConstraint
temporary constraint before adding toolbar.


sAreaConstraint

String sAreaConstraint
the current area constraint.

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

Serialized Fields

tree

JTree tree
The JTree that shows the IDataBooks.


dataBooks

IDataBook[] dataBooks
The IDataBook to be shown.


selfJoinedDataBook

IDataBook selfJoinedDataBook
The selfjoined databooks.


maxLength

int maxLength
The maximum length of not selfjoined databooks.


cellFormatter

ICellFormatter cellFormatter
The cellFormatListener.


nodeFormatter

INodeFormatter nodeFormatter
The cellFormatListener.


translation

TranslationMap translation
The translation mapping.


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.


ignoreEvent

boolean ignoreEvent
Ignoring Events.


isNotified

boolean isNotified
is notified.

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


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

Class com.sibvisions.rad.ui.swing.ext.celleditor.JVxLinkedCellEditor.CellEditorHandler extends 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

String[] columnNames
The column names.


referencedColumnNames

String[] referencedColumnNames
The column names referenced.


columnName

String columnName
The column name of the edited column.


referencedColumnName

String referencedColumnName
The column name referenced by the edited column.


searchColumns

String[] searchColumns
The search Columns.


referencedSearchColumns

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.


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.


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

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 JPanel implements Serializable


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

Class com.sibvisions.rad.ui.swing.ext.event.TabEvent extends 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.text

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

Serialized Fields

dateUtil

DateUtil dateUtil
The date util.

Class com.sibvisions.rad.ui.swing.ext.text.NumberFormatter extends 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 JApplet implements Serializable

Serialized Fields

launcher

SwingApplet.SwingAppletLauncher launcher
the ILauncher that represents this applet.


frame

Frame frame
the frame of the applet, if started via jnlp.


jscript

JSBridge jscript
the javascript bridge for the browser.


uploadThreads

Vector<E> uploadThreads
Speichert alle Upload Threads.


thStartup

Thread thStartup
the startup thread when the appliet was notified.


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 AbstractList<E> implements Serializable

Serialized Fields

array

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 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 Hashtable<K,V> implements Serializable

Serialized Fields

vOrderedKeys

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 Provider implements Serializable


Package javax.rad.io

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

Serialization Methods

readObject

private void readObject(ObjectInputStream pObjectInputStream)
                 throws IOException,
                        ClassNotFoundException
Reads this Object to the pObjectInputStream.

Throws:
IOException - if an IOException occurs.
ClassNotFoundException - if a class does not exist.

writeObject

private void writeObject(ObjectOutputStream pObjectOutputStream)
                  throws IOException
Writes this Object to the ObjectOutputStream.

Throws:
IOException - if an IOException occurs.
Serialized Fields

fileName

String fileName
The content.

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

Serialized Fields

fileName

String fileName
The content.


objectCacheKey

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 Object implements Serializable

Serialized Fields

sName

String sName
The name of the ColumnDefinition.


ctDataType

IDataType ctDataType
The DataType of the ColumnDefinition.


sLabel

String sLabel
The label of the ColumnDefinition.


bNullable

boolean bNullable
If this ColumnDefinition can be null.


sComment

String sComment
The comment of the ColumnDefinition.


oDefault

Object oDefault
the default value for the column.


oAllowedValues

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.


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.

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

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

Serialized Fields

auColumnDefinitions

ArrayUtil<E> auColumnDefinitions
Array of all ColumnDefinition's.


auColumnNames

ArrayUtil<E> auColumnNames
String[] of all all column names.


saPKColumnNames

String[] saPKColumnNames
String[] of all primary key columns.


auControls

ArrayUtil<E> auControls
The ArrayUtil of all IRepaintListeners.

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

Serialized Fields

saColumnNames

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 Object implements Serializable

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

Serialized Fields

oValue

Object oValue
The value to use for the compare.


sColumnName

String sColumnName
The column to use for the compare.


bIgnoreNull

boolean bIgnoreNull
Determines, if null values will be ignored.

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

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

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


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 Object implements Serializable

Serialized Fields

iSize

int iSize
The Size of the DataType.

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

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

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 Object implements Serializable

Serialized Fields

columnNames

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


referencedColumnNames

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

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


Package javax.rad.persist

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

Serialized Fields

sName

String sName
The name of the ColumnMetaData.


sLabel

String sLabel
The default label of the ColumnMetaData.


iDataTypeIdentifier

int iDataTypeIdentifier
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.


bAutoIncrement

boolean bAutoIncrement
If this ColumnMetaData is an auto increment column.


oDefault

Object oDefault
the default value for the column.


oAllowedValues

Object[] oAllowedValues
the allowed values for the column.


srdLinkReference

StorageReferenceDefinition srdLinkReference
The link reference for a server side dropdown list (automatic linked celleditor).

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

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

Serialized Fields

auColumnMetaData

ArrayUtil<E> auColumnMetaData
The array of all ColumnMetaData.


faFeatures

MetaData.Feature[] faFeatures
The list of supported features.


saPrimaryKeyColumnNames

String[] saPrimaryKeyColumnNames
The primary column names.


saRepresentationColumnNames

String[] saRepresentationColumnNames
The Representation column names.


saAutoIncrementColumnNames

String[] saAutoIncrementColumnNames
The auto increment column names.


Package javax.rad.remote

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

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

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


Package javax.rad.ui

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


Package javax.rad.util

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



Copyright © 2009 SIB Visions GmbH. All Rights Reserved.