Serialized Form


Package org.openswing.swing.client

Class org.openswing.swing.client.BaseInputControl extends javax.swing.JPanel implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName
attribute name that identifies the input control


required

boolean required
mandatory property of the input control


enabledOnInsert

boolean enabledOnInsert
define if the input control is enabled on INSERT mode


enabledOnEdit

boolean enabledOnEdit
define if the input control is enabled on EDIT mode


canCopy

boolean canCopy
define if the input control value is duplicated when user has clicked on COPY button


changed

boolean changed
define if the input control value is changed


linkedLabel

LabelControl linkedLabel
label used when showing error messages related to the input control


requiredIcon

javax.swing.JLabel requiredIcon
mandatory symbol


oldValue

java.lang.Object oldValue
old input control value


valueChangedListeners

java.util.ArrayList valueChangedListeners
value changed listener list


defaultBackgroundColor

java.awt.Color defaultBackgroundColor
default background color of the binding component


toolTipText

java.lang.String toolTipText
tooltip text


textAlignment

int textAlignment
column text horizontal alignment


inputControlPopupMenu

InputControlPopupMenu inputControlPopupMenu
popup menu

Class org.openswing.swing.client.CheckBoxControl extends javax.swing.JCheckBox implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName
attribute name to which link the input control


label

LabelControl label
label used when showing error messages related to the input control (optional)


enabledOnInsert

boolean enabledOnInsert
define if the input control is enabled on INSERT mode


enabledOnEdit

boolean enabledOnEdit
define if the input control is enabled on EDIT model


canCopy

boolean canCopy
define if the input control value is duplicated when user has clicked on COPY button


oldValue

java.lang.Object oldValue
old input control value


valueChangedListeners

java.util.ArrayList valueChangedListeners
value changed listener list


defaultBackgroundColor

java.awt.Color defaultBackgroundColor
default background color of the binding component


changed

boolean changed
define if the input control value is changed


toolTipText

java.lang.String toolTipText
tooltip text


allowNullValue

boolean allowNullValue
define if null value is alloed (i.e. distinct from Boolean.FALSE value); default value: false


model

CheckBoxControl.CheckBoxButtonModel model
ButtonModel associated to the check-box when "allowNullValue" property is set to true

Class org.openswing.swing.client.CheckBoxListControl extends BaseInputControl implements Serializable

Serialized Fields

mouseListeners

java.util.ArrayList mouseListeners

firstTime

boolean firstTime
flag used in addNotify method


list

javax.swing.JList list
list


domain

Domain domain
domain related to this input control


domainId

java.lang.String domainId
domain identifier


model

javax.swing.DefaultListModel model
list model


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode the list has no item selected; default value: false i.e. the first item is pre-selected


translateItemDescriptions

boolean translateItemDescriptions
define if description in list items must be translated; default value: true

Class org.openswing.swing.client.CodBox extends javax.swing.JTextField implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum code length


oldValue

java.lang.String oldValue
previous code value; initial value = ""


container

CodBoxContainer container
code container (code controller)


allowOnlyNumbers

boolean allowOnlyNumbers
define if the cod box allows numeric values only

Class org.openswing.swing.client.CodLookupControl extends BaseInputControl implements Serializable

Serialized Fields

buttonSeparator

java.awt.Component buttonSeparator
separator between code input field and lookup button


enableCodBox

boolean enableCodBox
flag used to set if code field is editable


lookupButton

javax.swing.JButton lookupButton
lookup button


codBox

CodBox codBox
code input field


validationController

LookupController validationController
lookup controller: this class will execute the code validation and the lookup grid opening


controllerClassName

java.lang.String controllerClassName
class name of the controller that must be invoked by pressing the "+" button


controllerMethodName

java.lang.String controllerMethodName
method name defined in ClientFacade class, related to the controller that must be invoked by pressing the "+" button


plusButton

javax.swing.JButton plusButton
"+" button, used to call the controller class, related to the code registry


autoCompletitionWaitTime

long autoCompletitionWaitTime
wait time (expressed in ms) before showing code auto completition feature for lookup controls; default value: ClientSettings.LOOKUP_AUTO_COMPLETITION_WAIT_TIME


firstTime

boolean firstTime
used in addNotify method


autoCompletitionListener

AutoCompletitionListener autoCompletitionListener

Class org.openswing.swing.client.ComboBoxControl extends BaseInputControl implements Serializable

Serialized Fields

combo

javax.swing.JComboBox combo
combo box


domain

Domain domain
domain related to this input control


domainId

java.lang.String domainId
domain identifier


model

javax.swing.DefaultComboBoxModel model
combo box model


enabledBackColor

java.awt.Color enabledBackColor
background color when the input control is enabled


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode combo box has no item selected; default value: false i.e. the first item is pre-selected


translateItemDescriptions

boolean translateItemDescriptions
define if description in combo items must be translated; default value: true

Class org.openswing.swing.client.ComboBoxVOControl extends BaseInputControl implements Serializable

Serialized Fields

combo

javax.swing.JComboBox combo
combo box


itemsMapper

org.openswing.swing.items.client.ItemsMapper itemsMapper
mapping between items v.o. attributes and items container v.o. attributes


itemsDataLocator

org.openswing.swing.items.client.ItemsDataLocator itemsDataLocator
items data source


itemsVO

ValueObject itemsVO
items value object


colProperties

Column[] colProperties
columns associated to lookup grid


model

javax.swing.DefaultComboBoxModel model
combo box model


allColumnVisible

boolean allColumnVisible
flag used to set visibility on all columns of lookup grid; default "false"


allColumnPreferredWidth

int allColumnPreferredWidth
default preferredWidth for all columns of lookup grid; default 100 pixels


enabledBackColor

java.awt.Color enabledBackColor
background color when the input control is enabled


getters

java.util.Hashtable getters
collection of pairs


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode combo box has no item selected; default value: false i.e. the first item is pre-selected


itemsLoaded

boolean itemsLoaded
flag used in addNotify method to retrieve items


form

Form form
Form container (optional)


foreignKeyAttributeName

java.lang.String foreignKeyAttributeName
attribute name in the combo-box v.o. that identify the attribute name in the v.o. of the combo-box container; as default value this attribute is null; null means that "attributeName" property will be used to identify the v.o. in the combo-box, i.e. the attribute names in the combo-box v.o. and in the container v.o. must have the same name

Class org.openswing.swing.client.CopyButton extends GenericButton implements Serializable

Class org.openswing.swing.client.CurrencyControl extends BaseInputControl implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of digits


maxValue

double maxValue
maximum value


minValue

double minValue
minimum value; default value: 0


decimals

int decimals
maximum number of decimals


grouping

boolean grouping
flag used to set thousands symbol visibility; default value = false


format

java.text.DecimalFormat format
format for the text


nullValue

java.lang.String nullValue
value for an input control value not defined


currencyBox

CurrencyControl.CurrencyBox currencyBox
numeric field


hideZeroDigits

boolean hideZeroDigits
flag used to define whether zero digits (after decimal point) must be hided/showed; default value: ClientSettings.ZERO_SHOWS_AS_ABSENT i.e. show zero digits


currencySymbol

java.lang.String currencySymbol
currency symbol; default value: ClientSettings.getInstance().getResources().getCurrencySymbol()


decimalSymbol

char decimalSymbol
decimal symbol; default value: ClientSettings.getInstance().getResources().getDecimalSymbol()


groupingSymbol

char groupingSymbol
grouping symbol; default value: ClientSettings.getInstance().getResources().getGroupingSymbol()


currencySymbolOnLeft

boolean currencySymbolOnLeft
flag used to define the default position of currency symbol in currency control/column: on the left or on the right of the numeric value; default value: ClientSettings.CURRENCY_SYMBOL_ON_LEFT i.e. on the left of the numeric value

Class org.openswing.swing.client.DateControl extends BaseInputControl implements Serializable

Serialized Fields

separator

char separator
separator


showCentury

boolean showCentury
flag used to show century


dateFormat

int dateFormat
date format; possible values: Resources.YMD, Resources.DMY, Resources.MDY, Resources.YDM


currentDate

java.util.Calendar currentDate
current date value


date

DateControl.DateBox date
date box


upperLimit

java.util.Date upperLimit
maximum allowed date


lowerLimit

java.util.Date lowerLimit
minimum allowed date


sdf

java.text.SimpleDateFormat sdf
date format


dateType

int dateType
possibile values: Consts.TYPE_DATE, Consts.TYPE_TIME, Consts.TYPE_DATE_TIME


timeFormat

java.lang.String timeFormat
possibile values: Resources.HH_MM or Resources.H_MM_AAA or Resources.HH_MM_SS or Resources.H_MM_SS_AAA


dateListeners

java.util.ArrayList dateListeners
date changed listeners


calendar

com.toedter.calendar.JDateChooser calendar
calendar


eventFiredByCalendar

boolean eventFiredByCalendar
flag used in setDate to identify whre the date setting event has been fired


defaultDate

java.util.Calendar defaultDate
default date to set into the calendar, when opening it for the first time; null means today


showCalendarButton

boolean showCalendarButton
flag used to show/hide calendar button; default value: true


strictUsage

boolean strictUsage
define how the date control must behave when an invalid date has been specified within it: clean up the content (stricy usage) or trying to correct it; default value: ClientSettings.DATE_COMPONENT_STRICT_USAGE

Class org.openswing.swing.client.DeleteButton extends GenericButton implements Serializable

Class org.openswing.swing.client.EditButton extends GenericButton implements Serializable

Class org.openswing.swing.client.ExportButton extends GenericButton implements Serializable

Class org.openswing.swing.client.FilterButton extends GenericButton implements Serializable

Class org.openswing.swing.client.FormattedTextControl extends BaseInputControl implements Serializable

Serialized Fields

textBox

FormattedTextControl.FormattedTextBox textBox
formatted text field


controller

FormatterController controller
formatter controller

Class org.openswing.swing.client.GenericButton extends javax.swing.JButton implements Serializable

Serialized Fields

dataControllerList

java.util.List dataControllerList
data controllers linked to this button


executeAsThread

boolean executeAsThread
flag used to execute the action event in a separated thread (useful for heavy server executions); default value: false


buttonBehavior

int buttonBehavior
define whether showing image/text on default buttons (insert, edit, ...); allowed values: Consts.BUTTON_IMAGE_ONLY, Consts.BUTTON_TEXT_ONLY, Consts.BUTTON_IMAGE_AND_TEXT; default value: ClientSettings.BUTTON_BEHAVIOR


attributeName

java.lang.String attributeName
attribute name linked to the button (optional), used to bind this link to a Form's value object


buttonId

java.lang.String buttonId
optional button identifier; when setted, it is used to enable/disable button according to ButtonsAuthorizations content

Class org.openswing.swing.client.GridControl extends javax.swing.JPanel implements Serializable

Serialized Fields

table

Grids table
grid contained in this panel; it will be created only on run-time


topTable

Grids topTable
top grid contained in this panel (optional); it will be created only on run-time


bottomTable

Grids bottomTable
bottom grid contained in this panel (optional); it will be created only on run-time


itsColumnContainer

GridControl.ColumnContainer itsColumnContainer
columns container; used only in design-time


designScrollPane

javax.swing.JScrollPane designScrollPane
scrollpane used to contain the columns container; used only in design-time


flowLayout1

java.awt.FlowLayout flowLayout1
layout used by the columns container


borderLayout1

java.awt.BorderLayout borderLayout1
layout used by the scrollpane


valueObjectClassName

java.lang.String valueObjectClassName
value object class name (all rows of the grid will have a value object of this type)


reorderingAllowed

boolean reorderingAllowed
flag used to specify if column reordering is allowed


resizingAllowed

boolean resizingAllowed
flag used to specify if column resizing is allowed


mode

int mode
current grid mode; default value: READONLY


controller

GridController controller
grid container


labelPanel

GridStatusPanel labelPanel

gridStatusPanel

javax.swing.JPanel gridStatusPanel
panel used to contain the grid and the status panel


borderLayout2

java.awt.BorderLayout borderLayout2
layout used by panel used to contain the grid and the status panel


visibleStatusPanel

boolean visibleStatusPanel
flag used to specify if the status panel is visible; default value: "true"


selectionMode

int selectionMode
grid selection mode; default value: SINGLE_SELECTION


insertButton

InsertButton insertButton
insert button


exportButton

ExportButton exportButton
export button


importButton

ImportButton importButton
import button


filterButton

FilterButton filterButton
filter/sort button


copyButton

CopyButton copyButton
copy button


editButton

EditButton editButton
edit button


reloadButton

ReloadButton reloadButton
reload/cancel button


deleteButton

DeleteButton deleteButton
delete button


saveButton

SaveButton saveButton
save button


autoLoadData

boolean autoLoadData
flag used to specify if data loading will be automatically performed when the grid is set to visible; default value: "true".


functionId

java.lang.String functionId
identifier (functionId) associated to the container


otherGridParams

java.util.Map otherGridParams
other grid parameters


gridDataLocator

GridDataLocator gridDataLocator
grid data locator; can be set to "ClientGridDataLocator" or to "ServerGridDataLocator"


navBar

NavigatorBar navBar
navigation bar (optional)


maxSortedColumns

int maxSortedColumns
maximum number of sorted columns


lockedColumns

int lockedColumns
number of locked columns, i.e. columns anchored to the left side of the grid; default value: 0


anchorLockedColumnsToLeft

boolean anchorLockedColumnsToLeft
define where to anchor locked columns: to the left or to the right of the grid; default value: true i.e. to the left


gridId

java.lang.String gridId
grid identifier (optional); used in drag 'n drop events


buttonsNotEnabled

java.util.ArrayList buttonsNotEnabled
cache used to temporally store buttons disabilitation policies (until Gris is set to visibile)


genericButtons

java.util.ArrayList genericButtons
generic buttons


maxNumberOfRowsOnInsert

int maxNumberOfRowsOnInsert
maximum number of rows to insert by pressing "down" key; default value: 1


components

java.util.ArrayList components
list of columns added to grid


rowHeight

int rowHeight
row height of the grid control; default value: ClientSettings.CELL_HEIGHT


rowHeightFixed

boolean rowHeightFixed
flag used to define if row height can change for each row, according to image height included in a cell of grid; default value: true


orderWithLoadData

boolean orderWithLoadData
flag used to define if grid sorting operation must always invoke loadData method to retrieve a new list of v.o. or the grid must sort the current v.o. list without invoking loadData (only with the whole result set loaded); default value: true


orderPolicy

OrderPolicy orderPolicy
interface that must be implemented in order to sort columns


showFilterPanelOnGrid

boolean showFilterPanelOnGrid
true to automatically show a filter panel when moving mouse at right of the grid; false to do not show it


filterPanelOnGridPolicy

int filterPanelOnGridPolicy
this property is used only when "showFilterPanelOnGrid" is set to true; define filter panel policy for hiding it; allowed values: Consts.FILTER_PANEL_ON_GRID_xxx; default value: ClientSettings.FILTER_PANEL_ON_GRID_POLICY


split

javax.swing.JSplitPane split
split pane used to split grid component from filter panel (optional)


filterPanel

FilterPanel filterPanel
filter panel to show at the right of the grid (optional)


lockedRowsOnBottom

int lockedRowsOnBottom
number of rows locked (anchored) on the bottom of the grid; default value: 0


lockedRowsOnTop

int lockedRowsOnTop
number of rows locked (anchored) on the top of the grid; default value: 0


topGridController

GridController topGridController
top grid controller (optional)


bottomGridController

GridController bottomGridController
bottom grid controller (optional)


topGridDataLocator

GridDataLocator topGridDataLocator
top grid data locator (optional)


bottomGridDataLocator

GridDataLocator bottomGridDataLocator
bottom grid data locator (optional)


tmpPanel

javax.swing.JPanel tmpPanel
container of all grids (top, std and bottom (locked and non)


defaultQuickFilterCriteria

int defaultQuickFilterCriteria
default value that could be set in the quick filter criteria; default value: ClientSettings.DEFAULT_QUICK_FILTER_CRITERIA; values allowed: Consts.EQUALS,Consts.CONTAINS,Consts.STARTS_WITH,Consts.ENDS_WITH


spacing

java.awt.Dimension spacing
intercell spacing; default value = ClientSettings.INTERCELL_SPACING


rowMargin

int rowMargin
row margin; default value = ClientSettings.ROW_MARGIN


createInnerVO

boolean createInnerVO
flag used to define if an inner v.o. must be automatically instantiated when a setter method is invoked; default value: true


mergedCells

java.util.ArrayList mergedCells
list of objects {int[],int[]} used to merge cells


colorsInReadOnlyMode

boolean colorsInReadOnlyMode
flag used to define if background and foreground colors must be setted according to GridController definition only in READONLY mode; default value: true


loadDataCompletedListeners

java.util.ArrayList loadDataCompletedListeners
list of ActionListener objetcs related to the event "loading data completed"


popupCommands

java.util.ArrayList popupCommands
list of custom commands added to the popup menu accessed by right mouse click on grid


profile

org.openswing.swing.table.profiles.java.GridProfile profile
current grid profile


defaultProfile

org.openswing.swing.table.profiles.java.GridProfile defaultProfile
default grid profile


permissions

GridPermissions permissions
grid permissions


profileMenu

javax.swing.JMenu profileMenu
profile management menu


profilesMenu

javax.swing.JMenu profilesMenu
profile list menu


anchorLastColumn

boolean anchorLastColumn
flag used to anchor the last column on the right margin of the grid, only when all columns width is lesser than grid width


expandableColumn

int expandableColumn
column index declared as expandable, i.e. user can click on it to expand cell to show an inner component; default value: 0 (first column)


singleExpandableRow

boolean singleExpandableRow
define whether expanded rows in the past must be collapsed when expanding the current one; used only when "overwriteRowWhenExpanding" property is not null; default value: false


overwriteRowWhenExpanding

boolean overwriteRowWhenExpanding
define whether the row to show, when expanding the current one, must be showed over the current one on in a new row below it; used only when "overwriteRowWhenExpanding" property is not null; default value: false i.e. do not overwrite it


expandableRowController

ExpandableRowController expandableRowController
define the controller that manages row expansion


parentFrame

javax.swing.JInternalFrame parentFrame
parent frame: JFrame or JInternalFrame


columnProperties

Column[] columnProperties
column properties


showWarnMessageBeforeReloading

boolean showWarnMessageBeforeReloading
flag used to define if a warning message must be showed when reloading data in grid and grid is in EDIT/INSERT mode; default value: true


allowInsertInEdit

boolean allowInsertInEdit
flag used to allow insert row (using DOWN key) in edit mode too; default value: false


insertRowsOnTop

boolean insertRowsOnTop
define where new rows must be added: true at the top of the grid or false at the bottom; default value: ClientSettings.INSERT_ROWS_ON_TOP


headerHeight

int headerHeight
header height; default value: ClientSettings.HEADER_HEIGHT


editOnSingleRow

boolean editOnSingleRow
flag used to force the editing of one row only: the current selected row; default value: false, i.e. all rows are editable


topTableMergedCells

java.util.ArrayList topTableMergedCells
list of objects {int[],int[]} used to merge cells in top table


bottomTableMergedCells

java.util.ArrayList bottomTableMergedCells
list of objects {int[],int[]} used to merge cells in bottom table


listFilters

java.util.HashMap listFilters
combo-box filters to apply to column headers


showPageNumber

boolean showPageNumber
flag used to show current page number in grid; default value: ClientSettings.SHOW_PAGE_NUMBER_IN_GRID


searchAdditionalRows

boolean searchAdditionalRows
flag used in grid to enable the retrieval of additional rows in fast search, when search criteria fails; default value: ClientSettings.SEARCH_ADDITION_ROWS


allowColumnsSortingInEdit

boolean allowColumnsSortingInEdit
flag used to allow the columns sorting in edit mode too; default value: false; note that this setting is used only when orderWithLoadData property is set to false

Class org.openswing.swing.client.GridControl.ColumnContainer extends javax.swing.JPanel implements Serializable

Class org.openswing.swing.client.ImageControl extends BaseInputControl implements Serializable

Serialized Fields

imagePanel

ImagePanel imagePanel
image panel


showButton

boolean showButton
flag used to define if an image selection button must be showed; default value: true


autoResize

boolean autoResize
flag used to define if the image panel could auto-resize or it must autosize to width x height


imageWidth

int imageWidth
image panel width


imageHeight

int imageHeight
image panel height


selButton

javax.swing.JButton selButton
selection button; used to select an image file from local file system


fileFilter

javax.swing.filechooser.FileFilter fileFilter
file filter used to filter image file selection from select button; default value: jpg and gif files only


listeners

java.util.ArrayList listeners
list of ActionListener objects added to selection button


gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

Class org.openswing.swing.client.ImagePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

imagePanel

ImagePanel.InnerImagePanel imagePanel

image

byte[] image
image, expressed as byte[]


imageName

java.lang.String imageName
image file name


borderLayout1

java.awt.BorderLayout borderLayout1

sp

javax.swing.JScrollPane sp

toolTipText

java.lang.String toolTipText
tooltip text

Class org.openswing.swing.client.ImportButton extends GenericButton implements Serializable

Class org.openswing.swing.client.InputControlPopupMenu extends javax.swing.JPopupMenu implements Serializable

Serialized Fields

inputControl

InputControl inputControl
input control linked to this popup menu


copyAndPasteEnabled

boolean copyAndPasteEnabled
flag used to show copy/cut/past command in popup menu

Class org.openswing.swing.client.InsertButton extends GenericButton implements Serializable

Class org.openswing.swing.client.LabelControl extends javax.swing.JLabel implements Serializable

Serialized Fields

label

java.lang.String label
label not yet translated


toolTipText

java.lang.String toolTipText
tooltip text

Class org.openswing.swing.client.LinkButton extends javax.swing.JPanel implements Serializable

Serialized Fields

label

java.lang.String label
label not yet translated


toolTipText

java.lang.String toolTipText
tooltip text


foregroundColorWhenEntered

java.awt.Color foregroundColorWhenEntered
label color to use when the mouse is over the link; default value: Color.BLUE


foregroundColorWhenExited

java.awt.Color foregroundColorWhenExited
label color to use when the mouse is not over the link


listeners

java.util.ArrayList listeners
list of ActionListener objects


showUnderline

boolean showUnderline
flag used to define if show an underline; default value: true


labelAttributeName

java.lang.String labelAttributeName
attribute name linked to the text of this link (optional), used to bind this link to a Form's value object


tooltipAttributeName

java.lang.String tooltipAttributeName
attribute name linked to the tooltip text of this link (optional), used to bind this link to a Form's value object


uriAttributeName

java.lang.String uriAttributeName
attribute name linked to the uri of this link (optional), used to bind this link to a Form's value object; if binded, this is the URI to automatically open when clicking on link


uri

java.lang.String uri
URI to automatically open when clicking on the link (optional)


oldValue

boolean oldValue
old enabled value


enabled

boolean enabled
enabled value


linkButton

javax.swing.JLabel linkButton
link button

Class org.openswing.swing.client.ListControl extends BaseInputControl implements Serializable

Serialized Fields

firstTime

boolean firstTime
flag used in addNotify method


list

javax.swing.JList list
list


domain

Domain domain
domain related to this input control


domainId

java.lang.String domainId
domain identifier


model

javax.swing.DefaultListModel model
list model


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode the list has no item selected; default value: false i.e. the first item is pre-selected


showCheckBoxes

boolean showCheckBoxes
define if a check-box must be showed for each node; default value: false


translateItemDescriptions

boolean translateItemDescriptions
define if description in list items must be translated; default value: true

Class org.openswing.swing.client.ListVOControl extends BaseInputControl implements Serializable

Serialized Fields

list

javax.swing.JList list
list


itemsMapper

org.openswing.swing.items.client.ItemsMapper itemsMapper
mapping between items v.o. attributes and items container v.o. attributes


itemsDataLocator

org.openswing.swing.items.client.ItemsDataLocator itemsDataLocator
items data source


itemsVO

ValueObject itemsVO
items value object


colProperties

Column[] colProperties
columns associated to lookup grid


model

javax.swing.DefaultListModel model
list model


allColumnVisible

boolean allColumnVisible
flag used to set visibility on all columns of lookup grid; default "false"


allColumnPreferredWidth

int allColumnPreferredWidth
default preferredWidth for all columns of lookup grid; default 100 pixels


getters

java.util.Hashtable getters
collection of pairs


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode list has no item selected; default value: false i.e. the first item is pre-selected


itemsLoaded

boolean itemsLoaded
flag used in addNotify method to retrieve items


form

Form form
Form container (optional)


foreignKeyAttributeName

java.lang.String foreignKeyAttributeName
attribute name in the list v.o. that identify the attribute name in the v.o. of the list container; as default value this attribute is null; null means that "attributeName" property will be used to identify the v.o. in the list, i.e. the attribute names in the list v.o. and in the container v.o. must have the same name

Class org.openswing.swing.client.MultiCodLookupControl extends javax.swing.JPanel implements Serializable

Serialized Fields

lookupControl

CodLookupControl lookupControl
lookup control


selectedVOs

java.util.ArrayList selectedVOs
list of ValueObjects related to selected codes


clearButton

javax.swing.JButton clearButton
clear button


model

javax.swing.DefaultListModel model
JList model


codesList

javax.swing.JList codesList
JList that contains selected codes and other info


controller

LookupController controller
lookup controller


lookupAttributeNames

java.lang.String[] lookupAttributeNames
list of lookup v.o. attributes, whose values will be showed within the JList


sep

java.lang.String sep
separator to use within the JList to separate tokens


scrollPaneList

javax.swing.JScrollPane scrollPaneList

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

Class org.openswing.swing.client.MultiLineLabelControl extends javax.swing.JTextArea implements Serializable

Serialized Fields

label

java.lang.String label
label not yet translated


toolTipText

java.lang.String toolTipText
tooltip text

Class org.openswing.swing.client.NavigatorBar extends javax.swing.JPanel implements Serializable

Serialized Fields

firstButton

javax.swing.JButton firstButton
load the first block of records into the grid


prevButton

javax.swing.JButton prevButton
select the previous row in the grid


nextButton

javax.swing.JButton nextButton
select the next row in the grid


lastButton

javax.swing.JButton lastButton
load the last block of records into the grid


nextPgButton

javax.swing.JButton nextPgButton
load the next block of records from the grid


prevPgButton

javax.swing.JButton prevPgButton
load the previous block of records from the grid


resultSetController

NavigatorBarController resultSetController
grid control


afterActionListeners

java.util.ArrayList afterActionListeners
list of ActionListeners registered to this navigator bar; these listeners will be called AFTER a navigator button has been pressed (AFTER selecting row event)


beforeActionListeners

java.util.ArrayList beforeActionListeners
list of ActionListeners registered to this navigator bar; these listeners will be called as the first instruction when a navigator button is being pressed (BEFORE selecting row event)


controlPageNr

NumericControl controlPageNr
optional input field used to specify the page number to load; only in case of loading one page per time


currentPageNr

int currentPageNr
current page number


pageNrPanel

javax.swing.JPanel pageNrPanel
panel that contains page number field


showPaginationButtons

boolean showPaginationButtons
true to show pagination buttons in navigator bar; false to do not show them; default value: ClientSettings.SHOW_PAGINATION_BUTTONS_ON_NAVBAR


showPageNumber

boolean showPageNumber
true to show page number input field in navigator bar (note: it is automatically hided if result set is fully loaded in grid, independently from this setting); false to do not show it; default value: true

Class org.openswing.swing.client.NumericControl extends BaseInputControl implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of digits


maxValue

double maxValue
maximum value


minValue

double minValue
minimum value; default value: 0


decimals

int decimals
maximum number of decimals


grouping

boolean grouping
flag used to set thousands symbol visibility; default value = false


format

java.text.DecimalFormat format
format for the text


nullValue

java.lang.String nullValue
value for an input control value not defined


numBox

NumBox numBox
numeric field


hideZeroDigits

boolean hideZeroDigits
flag used to define whether zero digits (after decimal point) must be hided/showed; default value: ClientSettings.ZERO_SHOWS_AS_ABSENT i.e. show zero digits

Class org.openswing.swing.client.PasswordControl extends TextControl implements Serializable

Class org.openswing.swing.client.ProgressBarControl extends BaseInputControl implements Serializable

Serialized Fields

progressBar

ProgressBar progressBar
progress bar

Class org.openswing.swing.client.PropertyGridControl extends javax.swing.JScrollPane implements Serializable

Serialized Fields

model

PropertyGridModel model
editable table model having a specific cell editor for each row


grid

javax.swing.JTable grid
table that contains properties


insertButton

InsertButton insertButton
button linked to the grid, used to set INSERT mode (insert new row on grid)


editButton

EditButton editButton
button linked to the grid, used to set EDIT mode (edit the selected row on grid)


reloadButton

ReloadButton reloadButton
button linked to the grid, used to set READONLY mode and to reload the TableModel


saveButton

SaveButton saveButton
button linked to the grid, used to commit the modified rows (on INSERT/EDIT mode)


controller

PropertyGridController controller
controller used to fetch data (property values)


currentValueButtons

java.util.HashMap currentValueButtons
current enabled button state, before GenericButton.setEnabled method calling


bindedButtons

java.util.HashSet bindedButtons
collection of buttons binded to grid (InsertButton, EditButton, etc)

Class org.openswing.swing.client.RadioButtonControl extends javax.swing.JRadioButton implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName
attribute name to which link the input control


required

boolean required
flag use to define mandatory property of the input control


label

LabelControl label
label used when showing error messages related to the input control (optional)


enabledOnInsert

boolean enabledOnInsert
define if the input control is enabled on INSERT mode


enabledOnEdit

boolean enabledOnEdit
define if the input control is enabled on EDIT model


canCopy

boolean canCopy
define if the input control value is duplicated when user has clicked on COPY button


oldValue

java.lang.Object oldValue
old input control value


valueChangedListeners

java.util.ArrayList valueChangedListeners
value changed listener list


defaultBackgroundColor

java.awt.Color defaultBackgroundColor
default background color of the binding component


changed

boolean changed
define if the input control value is changed


selectedValue

java.lang.Object selectedValue
value that will be setted by the radio button when it's selected


buttonGroup

javax.swing.ButtonGroup buttonGroup
button group linked to this radio button


toolTipText

java.lang.String toolTipText
tooltip text

Class org.openswing.swing.client.ReloadButton extends GenericButton implements Serializable

Class org.openswing.swing.client.SaveButton extends GenericButton implements Serializable

Class org.openswing.swing.client.SpinnerListControl extends BaseInputControl implements Serializable

Serialized Fields

model

javax.swing.SpinnerListModel model

spinner

javax.swing.JSpinner spinner

ftf

javax.swing.JFormattedTextField ftf

domain

Domain domain
domain related to this input control


domainId

java.lang.String domainId
domain identifier


columns

int columns
number of visible characters; default value: 8


horizontalAlignment

int horizontalAlignment
horizontal alignment


translateItemDescriptions

boolean translateItemDescriptions
define if description in spinner items must be translated; default value: true


enabledBackColor

java.awt.Color enabledBackColor
background color when the input control is enabled

Class org.openswing.swing.client.SpinnerNumberControl extends BaseInputControl implements Serializable

Serialized Fields

columns

int columns
number of visible characters; default value: 5


horizontalAlignment

int horizontalAlignment
horizontal alignment


enabledBackColor

java.awt.Color enabledBackColor
background color when the input control is enabled


maxValue

java.lang.Double maxValue
maximum value


minValue

java.lang.Double minValue
minimum value; default value: 0


initialValue

java.lang.Double initialValue
initial value; default value: 0


step

java.lang.Double step
increment value; default value: 1


model

javax.swing.SpinnerNumberModel model

spinner

javax.swing.JSpinner spinner

ftf

javax.swing.JSpinner.NumberEditor ftf

changeListeners

java.util.ArrayList changeListeners
list of ChangeListener objects

Class org.openswing.swing.client.SplashScreen extends javax.swing.JWindow implements Serializable

Serialized Fields

image

java.awt.Image image
image to show


text

java.lang.String text
splash screen text (may be null)


delayTime

int delayTime
delay time, expressed in seconds


parentFrame

javax.swing.JFrame parentFrame
parent frame

Class org.openswing.swing.client.TextAreaControl extends BaseInputControl implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of characters


scrollPane

javax.swing.JScrollPane scrollPane
used by addNotify method


textArea

TextAreaControl.TextArea textArea
text editor

Class org.openswing.swing.client.TextControl extends BaseInputControl implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of characters


upperCase

boolean upperCase
flag used to translate the text on uppercase


trimText

boolean trimText
flag used to trim the text


rpadding

boolean rpadding
flag used to right padding the text (related to maxCharacters property)


textBox

javax.swing.JTextField textBox
text field


Package org.openswing.swing.customvo.client

Class org.openswing.swing.customvo.client.CustomGridControl extends GridControl implements Serializable

Class org.openswing.swing.customvo.client.CustomGridControlController extends GridController implements Serializable

Serialized Fields

customFields

java.util.ArrayList customFields
list of CustomFieldVO ojbjects, related to grid columns


attributesPerTable

java.util.HashMap attributesPerTable
collection of pairs


pkPerTable

java.util.HashMap pkPerTable
collection of pairs


Package org.openswing.swing.customvo.java

Class org.openswing.swing.customvo.java.CustomFieldVO extends ValueObjectImpl implements Serializable

Serialized Fields

constraintValues

java.lang.String constraintValues

attributeName

java.lang.String attributeName

visible

boolean visible

defaultValueText

java.lang.String defaultValueText

defaultValueNum

java.math.BigDecimal defaultValueNum

fieldName

java.lang.String fieldName

sorted

boolean sorted

sortVersus

java.lang.String sortVersus
default: "ASC" (ascending)


sortOrder

int sortOrder

editableOnEdit

boolean editableOnEdit

editableOnInsert

boolean editableOnInsert

required

boolean required

filterable

boolean filterable

sortable

boolean sortable

tableName

java.lang.String tableName

columnWidth

int columnWidth
default: 100 characters


maxChars

int maxChars
default: 255


decimals

int decimals

integers

int integers

attributeType

int attributeType
type of attribute; possible values: CustomFieldVO.TYPE_xxx


description

java.lang.String description

defaultValueDate

java.sql.Timestamp defaultValueDate

pk

boolean pk

Class org.openswing.swing.customvo.java.CustomValueObject extends ValueObjectImpl implements Serializable

Serialized Fields

attributeNameS0

java.lang.String attributeNameS0

attributeNameS1

java.lang.String attributeNameS1

attributeNameS2

java.lang.String attributeNameS2

attributeNameS3

java.lang.String attributeNameS3

attributeNameS4

java.lang.String attributeNameS4

attributeNameS5

java.lang.String attributeNameS5

attributeNameS6

java.lang.String attributeNameS6

attributeNameS7

java.lang.String attributeNameS7

attributeNameS8

java.lang.String attributeNameS8

attributeNameS9

java.lang.String attributeNameS9

attributeNameS10

java.lang.String attributeNameS10

attributeNameS11

java.lang.String attributeNameS11

attributeNameS12

java.lang.String attributeNameS12

attributeNameS13

java.lang.String attributeNameS13

attributeNameS14

java.lang.String attributeNameS14

attributeNameS15

java.lang.String attributeNameS15

attributeNameS16

java.lang.String attributeNameS16

attributeNameS17

java.lang.String attributeNameS17

attributeNameS18

java.lang.String attributeNameS18

attributeNameS19

java.lang.String attributeNameS19

attributeNameS20

java.lang.String attributeNameS20

attributeNameS21

java.lang.String attributeNameS21

attributeNameS22

java.lang.String attributeNameS22

attributeNameS23

java.lang.String attributeNameS23

attributeNameS24

java.lang.String attributeNameS24

attributeNameS25

java.lang.String attributeNameS25

attributeNameS26

java.lang.String attributeNameS26

attributeNameS27

java.lang.String attributeNameS27

attributeNameS28

java.lang.String attributeNameS28

attributeNameS29

java.lang.String attributeNameS29

attributeNameS30

java.lang.String attributeNameS30

attributeNameS31

java.lang.String attributeNameS31

attributeNameS32

java.lang.String attributeNameS32

attributeNameS33

java.lang.String attributeNameS33

attributeNameS34

java.lang.String attributeNameS34

attributeNameS35

java.lang.String attributeNameS35

attributeNameS36

java.lang.String attributeNameS36

attributeNameS37

java.lang.String attributeNameS37

attributeNameS38

java.lang.String attributeNameS38

attributeNameS39

java.lang.String attributeNameS39

attributeNameS40

java.lang.String attributeNameS40

attributeNameS41

java.lang.String attributeNameS41

attributeNameS42

java.lang.String attributeNameS42

attributeNameS43

java.lang.String attributeNameS43

attributeNameS44

java.lang.String attributeNameS44

attributeNameS45

java.lang.String attributeNameS45

attributeNameS46

java.lang.String attributeNameS46

attributeNameS47

java.lang.String attributeNameS47

attributeNameS48

java.lang.String attributeNameS48

attributeNameS49

java.lang.String attributeNameS49

attributeNameS50

java.lang.String attributeNameS50

attributeNameS51

java.lang.String attributeNameS51

attributeNameS52

java.lang.String attributeNameS52

attributeNameS53

java.lang.String attributeNameS53

attributeNameS54

java.lang.String attributeNameS54

attributeNameS55

java.lang.String attributeNameS55

attributeNameS56

java.lang.String attributeNameS56

attributeNameS57

java.lang.String attributeNameS57

attributeNameS58

java.lang.String attributeNameS58

attributeNameS59

java.lang.String attributeNameS59

attributeNameS60

java.lang.String attributeNameS60

attributeNameS61

java.lang.String attributeNameS61

attributeNameS62

java.lang.String attributeNameS62

attributeNameS63

java.lang.String attributeNameS63

attributeNameS64

java.lang.String attributeNameS64

attributeNameS65

java.lang.String attributeNameS65

attributeNameS66

java.lang.String attributeNameS66

attributeNameS67

java.lang.String attributeNameS67

attributeNameS68

java.lang.String attributeNameS68

attributeNameS69

java.lang.String attributeNameS69

attributeNameS70

java.lang.String attributeNameS70

attributeNameS71

java.lang.String attributeNameS71

attributeNameS72

java.lang.String attributeNameS72

attributeNameS73

java.lang.String attributeNameS73

attributeNameS74

java.lang.String attributeNameS74

attributeNameS75

java.lang.String attributeNameS75

attributeNameS76

java.lang.String attributeNameS76

attributeNameS77

java.lang.String attributeNameS77

attributeNameS78

java.lang.String attributeNameS78

attributeNameS79

java.lang.String attributeNameS79

attributeNameS80

java.lang.String attributeNameS80

attributeNameS81

java.lang.String attributeNameS81

attributeNameS82

java.lang.String attributeNameS82

attributeNameS83

java.lang.String attributeNameS83

attributeNameS84

java.lang.String attributeNameS84

attributeNameS85

java.lang.String attributeNameS85

attributeNameS86

java.lang.String attributeNameS86

attributeNameS87

java.lang.String attributeNameS87

attributeNameS88

java.lang.String attributeNameS88

attributeNameS89

java.lang.String attributeNameS89

attributeNameS90

java.lang.String attributeNameS90

attributeNameS91

java.lang.String attributeNameS91

attributeNameS92

java.lang.String attributeNameS92

attributeNameS93

java.lang.String attributeNameS93

attributeNameS94

java.lang.String attributeNameS94

attributeNameS95

java.lang.String attributeNameS95

attributeNameS96

java.lang.String attributeNameS96

attributeNameS97

java.lang.String attributeNameS97

attributeNameS98

java.lang.String attributeNameS98

attributeNameS99

java.lang.String attributeNameS99

attributeNameS100

java.lang.String attributeNameS100

attributeNameS101

java.lang.String attributeNameS101

attributeNameS102

java.lang.String attributeNameS102

attributeNameS103

java.lang.String attributeNameS103

attributeNameS104

java.lang.String attributeNameS104

attributeNameS105

java.lang.String attributeNameS105

attributeNameS106

java.lang.String attributeNameS106

attributeNameS107

java.lang.String attributeNameS107

attributeNameS108

java.lang.String attributeNameS108

attributeNameS109

java.lang.String attributeNameS109

attributeNameS110

java.lang.String attributeNameS110

attributeNameS111

java.lang.String attributeNameS111

attributeNameS112

java.lang.String attributeNameS112

attributeNameS113

java.lang.String attributeNameS113

attributeNameS114

java.lang.String attributeNameS114

attributeNameS115

java.lang.String attributeNameS115

attributeNameS116

java.lang.String attributeNameS116

attributeNameS117

java.lang.String attributeNameS117

attributeNameS118

java.lang.String attributeNameS118

attributeNameS119

java.lang.String attributeNameS119

attributeNameS120

java.lang.String attributeNameS120

attributeNameS121

java.lang.String attributeNameS121

attributeNameS122

java.lang.String attributeNameS122

attributeNameS123

java.lang.String attributeNameS123

attributeNameS124

java.lang.String attributeNameS124

attributeNameS125

java.lang.String attributeNameS125

attributeNameS126

java.lang.String attributeNameS126

attributeNameS127

java.lang.String attributeNameS127

attributeNameS128

java.lang.String attributeNameS128

attributeNameS129

java.lang.String attributeNameS129

attributeNameS130

java.lang.String attributeNameS130

attributeNameS131

java.lang.String attributeNameS131

attributeNameS132

java.lang.String attributeNameS132

attributeNameS133

java.lang.String attributeNameS133

attributeNameS134

java.lang.String attributeNameS134

attributeNameS135

java.lang.String attributeNameS135

attributeNameS136

java.lang.String attributeNameS136

attributeNameS137

java.lang.String attributeNameS137

attributeNameS138

java.lang.String attributeNameS138

attributeNameS139

java.lang.String attributeNameS139

attributeNameS140

java.lang.String attributeNameS140

attributeNameS141

java.lang.String attributeNameS141

attributeNameS142

java.lang.String attributeNameS142

attributeNameS143

java.lang.String attributeNameS143

attributeNameS144

java.lang.String attributeNameS144

attributeNameS145

java.lang.String attributeNameS145

attributeNameS146

java.lang.String attributeNameS146

attributeNameS147

java.lang.String attributeNameS147

attributeNameS148

java.lang.String attributeNameS148

attributeNameS149

java.lang.String attributeNameS149

attributeNameS150

java.lang.String attributeNameS150

attributeNameS151

java.lang.String attributeNameS151

attributeNameS152

java.lang.String attributeNameS152

attributeNameS153

java.lang.String attributeNameS153

attributeNameS154

java.lang.String attributeNameS154

attributeNameS155

java.lang.String attributeNameS155

attributeNameS156

java.lang.String attributeNameS156

attributeNameS157

java.lang.String attributeNameS157

attributeNameS158

java.lang.String attributeNameS158

attributeNameS159

java.lang.String attributeNameS159

attributeNameS160

java.lang.String attributeNameS160

attributeNameS161

java.lang.String attributeNameS161

attributeNameS162

java.lang.String attributeNameS162

attributeNameS163

java.lang.String attributeNameS163

attributeNameS164

java.lang.String attributeNameS164

attributeNameS165

java.lang.String attributeNameS165

attributeNameS166

java.lang.String attributeNameS166

attributeNameS167

java.lang.String attributeNameS167

attributeNameS168

java.lang.String attributeNameS168

attributeNameS169

java.lang.String attributeNameS169

attributeNameS170

java.lang.String attributeNameS170

attributeNameS171

java.lang.String attributeNameS171

attributeNameS172

java.lang.String attributeNameS172

attributeNameS173

java.lang.String attributeNameS173

attributeNameS174

java.lang.String attributeNameS174

attributeNameS175

java.lang.String attributeNameS175

attributeNameS176

java.lang.String attributeNameS176

attributeNameS177

java.lang.String attributeNameS177

attributeNameS178

java.lang.String attributeNameS178

attributeNameS179

java.lang.String attributeNameS179

attributeNameS180

java.lang.String attributeNameS180

attributeNameS181

java.lang.String attributeNameS181

attributeNameS182

java.lang.String attributeNameS182

attributeNameS183

java.lang.String attributeNameS183

attributeNameS184

java.lang.String attributeNameS184

attributeNameS185

java.lang.String attributeNameS185

attributeNameS186

java.lang.String attributeNameS186

attributeNameS187

java.lang.String attributeNameS187

attributeNameS188

java.lang.String attributeNameS188

attributeNameS189

java.lang.String attributeNameS189

attributeNameS190

java.lang.String attributeNameS190

attributeNameS191

java.lang.String attributeNameS191

attributeNameS192

java.lang.String attributeNameS192

attributeNameS193

java.lang.String attributeNameS193

attributeNameS194

java.lang.String attributeNameS194

attributeNameS195

java.lang.String attributeNameS195

attributeNameS196

java.lang.String attributeNameS196

attributeNameS197

java.lang.String attributeNameS197

attributeNameS198

java.lang.String attributeNameS198

attributeNameS199

java.lang.String attributeNameS199

attributeNameS200

java.lang.String attributeNameS200

attributeNameS201

java.lang.String attributeNameS201

attributeNameS202

java.lang.String attributeNameS202

attributeNameS203

java.lang.String attributeNameS203

attributeNameS204

java.lang.String attributeNameS204

attributeNameS205

java.lang.String attributeNameS205

attributeNameS206

java.lang.String attributeNameS206

attributeNameS207

java.lang.String attributeNameS207

attributeNameS208

java.lang.String attributeNameS208

attributeNameS209

java.lang.String attributeNameS209

attributeNameS210

java.lang.String attributeNameS210

attributeNameS211

java.lang.String attributeNameS211

attributeNameS212

java.lang.String attributeNameS212

attributeNameS213

java.lang.String attributeNameS213

attributeNameS214

java.lang.String attributeNameS214

attributeNameS215

java.lang.String attributeNameS215

attributeNameS216

java.lang.String attributeNameS216

attributeNameS217

java.lang.String attributeNameS217

attributeNameS218

java.lang.String attributeNameS218

attributeNameS219

java.lang.String attributeNameS219

attributeNameS220

java.lang.String attributeNameS220

attributeNameS221

java.lang.String attributeNameS221

attributeNameS222

java.lang.String attributeNameS222

attributeNameS223

java.lang.String attributeNameS223

attributeNameS224

java.lang.String attributeNameS224

attributeNameS225

java.lang.String attributeNameS225

attributeNameS226

java.lang.String attributeNameS226

attributeNameS227

java.lang.String attributeNameS227

attributeNameS228

java.lang.String attributeNameS228

attributeNameS229

java.lang.String attributeNameS229

attributeNameS230

java.lang.String attributeNameS230

attributeNameS231

java.lang.String attributeNameS231

attributeNameS232

java.lang.String attributeNameS232

attributeNameS233

java.lang.String attributeNameS233

attributeNameS234

java.lang.String attributeNameS234

attributeNameS235

java.lang.String attributeNameS235

attributeNameS236

java.lang.String attributeNameS236

attributeNameS237

java.lang.String attributeNameS237

attributeNameS238

java.lang.String attributeNameS238

attributeNameS239

java.lang.String attributeNameS239

attributeNameS240

java.lang.String attributeNameS240

attributeNameS241

java.lang.String attributeNameS241

attributeNameS242

java.lang.String attributeNameS242

attributeNameS243

java.lang.String attributeNameS243

attributeNameS244

java.lang.String attributeNameS244

attributeNameS245

java.lang.String attributeNameS245

attributeNameS246

java.lang.String attributeNameS246

attributeNameS247

java.lang.String attributeNameS247

attributeNameS248

java.lang.String attributeNameS248

attributeNameS249

java.lang.String attributeNameS249

attributeNameS250

java.lang.String attributeNameS250

attributeNameS251

java.lang.String attributeNameS251

attributeNameS252

java.lang.String attributeNameS252

attributeNameS253

java.lang.String attributeNameS253

attributeNameS254

java.lang.String attributeNameS254

attributeNameS255

java.lang.String attributeNameS255

attributeNameS256

java.lang.String attributeNameS256

attributeNameS257

java.lang.String attributeNameS257

attributeNameS258

java.lang.String attributeNameS258

attributeNameS259

java.lang.String attributeNameS259

attributeNameS260

java.lang.String attributeNameS260

attributeNameS261

java.lang.String attributeNameS261

attributeNameS262

java.lang.String attributeNameS262

attributeNameS263

java.lang.String attributeNameS263

attributeNameS264

java.lang.String attributeNameS264

attributeNameS265

java.lang.String attributeNameS265

attributeNameS266

java.lang.String attributeNameS266

attributeNameS267

java.lang.String attributeNameS267

attributeNameS268

java.lang.String attributeNameS268

attributeNameS269

java.lang.String attributeNameS269

attributeNameS270

java.lang.String attributeNameS270

attributeNameS271

java.lang.String attributeNameS271

attributeNameS272

java.lang.String attributeNameS272

attributeNameS273

java.lang.String attributeNameS273

attributeNameS274

java.lang.String attributeNameS274

attributeNameS275

java.lang.String attributeNameS275

attributeNameS276

java.lang.String attributeNameS276

attributeNameS277

java.lang.String attributeNameS277

attributeNameS278

java.lang.String attributeNameS278

attributeNameS279

java.lang.String attributeNameS279

attributeNameS280

java.lang.String attributeNameS280

attributeNameS281

java.lang.String attributeNameS281

attributeNameS282

java.lang.String attributeNameS282

attributeNameS283

java.lang.String attributeNameS283

attributeNameS284

java.lang.String attributeNameS284

attributeNameS285

java.lang.String attributeNameS285

attributeNameS286

java.lang.String attributeNameS286

attributeNameS287

java.lang.String attributeNameS287

attributeNameS288

java.lang.String attributeNameS288

attributeNameS289

java.lang.String attributeNameS289

attributeNameS290

java.lang.String attributeNameS290

attributeNameS291

java.lang.String attributeNameS291

attributeNameS292

java.lang.String attributeNameS292

attributeNameS293

java.lang.String attributeNameS293

attributeNameS294

java.lang.String attributeNameS294

attributeNameS295

java.lang.String attributeNameS295

attributeNameS296

java.lang.String attributeNameS296

attributeNameS297

java.lang.String attributeNameS297

attributeNameS298

java.lang.String attributeNameS298

attributeNameS299

java.lang.String attributeNameS299

attributeNameS300

java.lang.String attributeNameS300

attributeNameS301

java.lang.String attributeNameS301

attributeNameS302

java.lang.String attributeNameS302

attributeNameS303

java.lang.String attributeNameS303

attributeNameS304

java.lang.String attributeNameS304

attributeNameS305

java.lang.String attributeNameS305

attributeNameS306

java.lang.String attributeNameS306

attributeNameS307

java.lang.String attributeNameS307

attributeNameS308

java.lang.String attributeNameS308

attributeNameS309

java.lang.String attributeNameS309

attributeNameS310

java.lang.String attributeNameS310

attributeNameS311

java.lang.String attributeNameS311

attributeNameS312

java.lang.String attributeNameS312

attributeNameS313

java.lang.String attributeNameS313

attributeNameS314

java.lang.String attributeNameS314

attributeNameS315

java.lang.String attributeNameS315

attributeNameS316

java.lang.String attributeNameS316

attributeNameS317

java.lang.String attributeNameS317

attributeNameS318

java.lang.String attributeNameS318

attributeNameS319

java.lang.String attributeNameS319

attributeNameS320

java.lang.String attributeNameS320

attributeNameS321

java.lang.String attributeNameS321

attributeNameS322

java.lang.String attributeNameS322

attributeNameS323

java.lang.String attributeNameS323

attributeNameS324

java.lang.String attributeNameS324

attributeNameS325

java.lang.String attributeNameS325

attributeNameS326

java.lang.String attributeNameS326

attributeNameS327

java.lang.String attributeNameS327

attributeNameS328

java.lang.String attributeNameS328

attributeNameS329

java.lang.String attributeNameS329

attributeNameS330

java.lang.String attributeNameS330

attributeNameS331

java.lang.String attributeNameS331

attributeNameS332

java.lang.String attributeNameS332

attributeNameS333

java.lang.String attributeNameS333

attributeNameS334

java.lang.String attributeNameS334

attributeNameS335

java.lang.String attributeNameS335

attributeNameS336

java.lang.String attributeNameS336

attributeNameS337

java.lang.String attributeNameS337

attributeNameS338

java.lang.String attributeNameS338

attributeNameS339

java.lang.String attributeNameS339

attributeNameS340

java.lang.String attributeNameS340

attributeNameS341

java.lang.String attributeNameS341

attributeNameS342

java.lang.String attributeNameS342

attributeNameS343

java.lang.String attributeNameS343

attributeNameS344

java.lang.String attributeNameS344

attributeNameS345

java.lang.String attributeNameS345

attributeNameS346

java.lang.String attributeNameS346

attributeNameS347

java.lang.String attributeNameS347

attributeNameS348

java.lang.String attributeNameS348

attributeNameS349

java.lang.String attributeNameS349

attributeNameS350

java.lang.String attributeNameS350

attributeNameS351

java.lang.String attributeNameS351

attributeNameS352

java.lang.String attributeNameS352

attributeNameS353

java.lang.String attributeNameS353

attributeNameS354

java.lang.String attributeNameS354

attributeNameS355

java.lang.String attributeNameS355

attributeNameS356

java.lang.String attributeNameS356

attributeNameS357

java.lang.String attributeNameS357

attributeNameS358

java.lang.String attributeNameS358

attributeNameS359

java.lang.String attributeNameS359

attributeNameS360

java.lang.String attributeNameS360

attributeNameS361

java.lang.String attributeNameS361

attributeNameS362

java.lang.String attributeNameS362

attributeNameS363

java.lang.String attributeNameS363

attributeNameS364

java.lang.String attributeNameS364

attributeNameS365

java.lang.String attributeNameS365

attributeNameS366

java.lang.String attributeNameS366

attributeNameS367

java.lang.String attributeNameS367

attributeNameS368

java.lang.String attributeNameS368

attributeNameS369

java.lang.String attributeNameS369

attributeNameS370

java.lang.String attributeNameS370

attributeNameS371

java.lang.String attributeNameS371

attributeNameS372

java.lang.String attributeNameS372

attributeNameS373

java.lang.String attributeNameS373

attributeNameS374

java.lang.String attributeNameS374

attributeNameS375

java.lang.String attributeNameS375

attributeNameS376

java.lang.String attributeNameS376

attributeNameS377

java.lang.String attributeNameS377

attributeNameS378

java.lang.String attributeNameS378

attributeNameS379

java.lang.String attributeNameS379

attributeNameS380

java.lang.String attributeNameS380

attributeNameS381

java.lang.String attributeNameS381

attributeNameS382

java.lang.String attributeNameS382

attributeNameS383

java.lang.String attributeNameS383

attributeNameS384

java.lang.String attributeNameS384

attributeNameS385

java.lang.String attributeNameS385

attributeNameS386

java.lang.String attributeNameS386

attributeNameS387

java.lang.String attributeNameS387

attributeNameS388

java.lang.String attributeNameS388

attributeNameS389

java.lang.String attributeNameS389

attributeNameS390

java.lang.String attributeNameS390

attributeNameS391

java.lang.String attributeNameS391

attributeNameS392

java.lang.String attributeNameS392

attributeNameS393

java.lang.String attributeNameS393

attributeNameS394

java.lang.String attributeNameS394

attributeNameS395

java.lang.String attributeNameS395

attributeNameS396

java.lang.String attributeNameS396

attributeNameS397

java.lang.String attributeNameS397

attributeNameS398

java.lang.String attributeNameS398

attributeNameS399

java.lang.String attributeNameS399

attributeNameS400

java.lang.String attributeNameS400

attributeNameS401

java.lang.String attributeNameS401

attributeNameS402

java.lang.String attributeNameS402

attributeNameS403

java.lang.String attributeNameS403

attributeNameS404

java.lang.String attributeNameS404

attributeNameS405

java.lang.String attributeNameS405

attributeNameS406

java.lang.String attributeNameS406

attributeNameS407

java.lang.String attributeNameS407

attributeNameS408

java.lang.String attributeNameS408

attributeNameS409

java.lang.String attributeNameS409

attributeNameS410

java.lang.String attributeNameS410

attributeNameS411

java.lang.String attributeNameS411

attributeNameS412

java.lang.String attributeNameS412

attributeNameS413

java.lang.String attributeNameS413

attributeNameS414

java.lang.String attributeNameS414

attributeNameS415

java.lang.String attributeNameS415

attributeNameS416

java.lang.String attributeNameS416

attributeNameS417

java.lang.String attributeNameS417

attributeNameS418

java.lang.String attributeNameS418

attributeNameS419

java.lang.String attributeNameS419

attributeNameS420

java.lang.String attributeNameS420

attributeNameS421

java.lang.String attributeNameS421

attributeNameS422

java.lang.String attributeNameS422

attributeNameS423

java.lang.String attributeNameS423

attributeNameS424

java.lang.String attributeNameS424

attributeNameS425

java.lang.String attributeNameS425

attributeNameS426

java.lang.String attributeNameS426

attributeNameS427

java.lang.String attributeNameS427

attributeNameS428

java.lang.String attributeNameS428

attributeNameS429

java.lang.String attributeNameS429

attributeNameS430

java.lang.String attributeNameS430

attributeNameS431

java.lang.String attributeNameS431

attributeNameS432

java.lang.String attributeNameS432

attributeNameS433

java.lang.String attributeNameS433

attributeNameS434

java.lang.String attributeNameS434

attributeNameS435

java.lang.String attributeNameS435

attributeNameS436

java.lang.String attributeNameS436

attributeNameS437

java.lang.String attributeNameS437

attributeNameS438

java.lang.String attributeNameS438

attributeNameS439

java.lang.String attributeNameS439

attributeNameS440

java.lang.String attributeNameS440

attributeNameS441

java.lang.String attributeNameS441

attributeNameS442

java.lang.String attributeNameS442

attributeNameS443

java.lang.String attributeNameS443

attributeNameS444

java.lang.String attributeNameS444

attributeNameS445

java.lang.String attributeNameS445

attributeNameS446

java.lang.String attributeNameS446

attributeNameS447

java.lang.String attributeNameS447

attributeNameS448

java.lang.String attributeNameS448

attributeNameS449

java.lang.String attributeNameS449

attributeNameS450

java.lang.String attributeNameS450

attributeNameS451

java.lang.String attributeNameS451

attributeNameS452

java.lang.String attributeNameS452

attributeNameS453

java.lang.String attributeNameS453

attributeNameS454

java.lang.String attributeNameS454

attributeNameS455

java.lang.String attributeNameS455

attributeNameS456

java.lang.String attributeNameS456

attributeNameS457

java.lang.String attributeNameS457

attributeNameS458

java.lang.String attributeNameS458

attributeNameS459

java.lang.String attributeNameS459

attributeNameS460

java.lang.String attributeNameS460

attributeNameS461

java.lang.String attributeNameS461

attributeNameS462

java.lang.String attributeNameS462

attributeNameS463

java.lang.String attributeNameS463

attributeNameS464

java.lang.String attributeNameS464

attributeNameS465

java.lang.String attributeNameS465

attributeNameS466

java.lang.String attributeNameS466

attributeNameS467

java.lang.String attributeNameS467

attributeNameS468

java.lang.String attributeNameS468

attributeNameS469

java.lang.String attributeNameS469

attributeNameS470

java.lang.String attributeNameS470

attributeNameS471

java.lang.String attributeNameS471

attributeNameS472

java.lang.String attributeNameS472

attributeNameS473

java.lang.String attributeNameS473

attributeNameS474

java.lang.String attributeNameS474

attributeNameS475

java.lang.String attributeNameS475

attributeNameS476

java.lang.String attributeNameS476

attributeNameS477

java.lang.String attributeNameS477

attributeNameS478

java.lang.String attributeNameS478

attributeNameS479

java.lang.String attributeNameS479

attributeNameS480

java.lang.String attributeNameS480

attributeNameS481

java.lang.String attributeNameS481

attributeNameS482

java.lang.String attributeNameS482

attributeNameS483

java.lang.String attributeNameS483

attributeNameS484

java.lang.String attributeNameS484

attributeNameS485

java.lang.String attributeNameS485

attributeNameS486

java.lang.String attributeNameS486

attributeNameS487

java.lang.String attributeNameS487

attributeNameS488

java.lang.String attributeNameS488

attributeNameS489

java.lang.String attributeNameS489

attributeNameS490

java.lang.String attributeNameS490

attributeNameS491

java.lang.String attributeNameS491

attributeNameS492

java.lang.String attributeNameS492

attributeNameS493

java.lang.String attributeNameS493

attributeNameS494

java.lang.String attributeNameS494

attributeNameS495

java.lang.String attributeNameS495

attributeNameS496

java.lang.String attributeNameS496

attributeNameS497

java.lang.String attributeNameS497

attributeNameS498

java.lang.String attributeNameS498

attributeNameS499

java.lang.String attributeNameS499

attributeNameD0

java.sql.Timestamp attributeNameD0

attributeNameD1

java.sql.Timestamp attributeNameD1

attributeNameD2

java.sql.Timestamp attributeNameD2

attributeNameD3

java.sql.Timestamp attributeNameD3

attributeNameD4

java.sql.Timestamp attributeNameD4

attributeNameD5

java.sql.Timestamp attributeNameD5

attributeNameD6

java.sql.Timestamp attributeNameD6

attributeNameD7

java.sql.Timestamp attributeNameD7

attributeNameD8

java.sql.Timestamp attributeNameD8

attributeNameD9

java.sql.Timestamp attributeNameD9

attributeNameD10

java.sql.Timestamp attributeNameD10

attributeNameD11

java.sql.Timestamp attributeNameD11

attributeNameD12

java.sql.Timestamp attributeNameD12

attributeNameD13

java.sql.Timestamp attributeNameD13

attributeNameD14

java.sql.Timestamp attributeNameD14

attributeNameD15

java.sql.Timestamp attributeNameD15

attributeNameD16

java.sql.Timestamp attributeNameD16

attributeNameD17

java.sql.Timestamp attributeNameD17

attributeNameD18

java.sql.Timestamp attributeNameD18

attributeNameD19

java.sql.Timestamp attributeNameD19

attributeNameD20

java.sql.Timestamp attributeNameD20

attributeNameD21

java.sql.Timestamp attributeNameD21

attributeNameD22

java.sql.Timestamp attributeNameD22

attributeNameD23

java.sql.Timestamp attributeNameD23

attributeNameD24

java.sql.Timestamp attributeNameD24

attributeNameD25

java.sql.Timestamp attributeNameD25

attributeNameD26

java.sql.Timestamp attributeNameD26

attributeNameD27

java.sql.Timestamp attributeNameD27

attributeNameD28

java.sql.Timestamp attributeNameD28

attributeNameD29

java.sql.Timestamp attributeNameD29

attributeNameD30

java.sql.Timestamp attributeNameD30

attributeNameD31

java.sql.Timestamp attributeNameD31

attributeNameD32

java.sql.Timestamp attributeNameD32

attributeNameD33

java.sql.Timestamp attributeNameD33

attributeNameD34

java.sql.Timestamp attributeNameD34

attributeNameD35

java.sql.Timestamp attributeNameD35

attributeNameD36

java.sql.Timestamp attributeNameD36

attributeNameD37

java.sql.Timestamp attributeNameD37

attributeNameD38

java.sql.Timestamp attributeNameD38

attributeNameD39

java.sql.Timestamp attributeNameD39

attributeNameD40

java.sql.Timestamp attributeNameD40

attributeNameD41

java.sql.Timestamp attributeNameD41

attributeNameD42

java.sql.Timestamp attributeNameD42

attributeNameD43

java.sql.Timestamp attributeNameD43

attributeNameD44

java.sql.Timestamp attributeNameD44

attributeNameD45

java.sql.Timestamp attributeNameD45

attributeNameD46

java.sql.Timestamp attributeNameD46

attributeNameD47

java.sql.Timestamp attributeNameD47

attributeNameD48

java.sql.Timestamp attributeNameD48

attributeNameD49

java.sql.Timestamp attributeNameD49

attributeNameD50

java.sql.Timestamp attributeNameD50

attributeNameD51

java.sql.Timestamp attributeNameD51

attributeNameD52

java.sql.Timestamp attributeNameD52

attributeNameD53

java.sql.Timestamp attributeNameD53

attributeNameD54

java.sql.Timestamp attributeNameD54

attributeNameD55

java.sql.Timestamp attributeNameD55

attributeNameD56

java.sql.Timestamp attributeNameD56

attributeNameD57

java.sql.Timestamp attributeNameD57

attributeNameD58

java.sql.Timestamp attributeNameD58

attributeNameD59

java.sql.Timestamp attributeNameD59

attributeNameD60

java.sql.Timestamp attributeNameD60

attributeNameD61

java.sql.Timestamp attributeNameD61

attributeNameD62

java.sql.Timestamp attributeNameD62

attributeNameD63

java.sql.Timestamp attributeNameD63

attributeNameD64

java.sql.Timestamp attributeNameD64

attributeNameD65

java.sql.Timestamp attributeNameD65

attributeNameD66

java.sql.Timestamp attributeNameD66

attributeNameD67

java.sql.Timestamp attributeNameD67

attributeNameD68

java.sql.Timestamp attributeNameD68

attributeNameD69

java.sql.Timestamp attributeNameD69

attributeNameD70

java.sql.Timestamp attributeNameD70

attributeNameD71

java.sql.Timestamp attributeNameD71

attributeNameD72

java.sql.Timestamp attributeNameD72

attributeNameD73

java.sql.Timestamp attributeNameD73

attributeNameD74

java.sql.Timestamp attributeNameD74

attributeNameD75

java.sql.Timestamp attributeNameD75

attributeNameD76

java.sql.Timestamp attributeNameD76

attributeNameD77

java.sql.Timestamp attributeNameD77

attributeNameD78

java.sql.Timestamp attributeNameD78

attributeNameD79

java.sql.Timestamp attributeNameD79

attributeNameD80

java.sql.Timestamp attributeNameD80

attributeNameD81

java.sql.Timestamp attributeNameD81

attributeNameD82

java.sql.Timestamp attributeNameD82

attributeNameD83

java.sql.Timestamp attributeNameD83

attributeNameD84

java.sql.Timestamp attributeNameD84

attributeNameD85

java.sql.Timestamp attributeNameD85

attributeNameD86

java.sql.Timestamp attributeNameD86

attributeNameD87

java.sql.Timestamp attributeNameD87

attributeNameD88

java.sql.Timestamp attributeNameD88

attributeNameD89

java.sql.Timestamp attributeNameD89

attributeNameD90

java.sql.Timestamp attributeNameD90

attributeNameD91

java.sql.Timestamp attributeNameD91

attributeNameD92

java.sql.Timestamp attributeNameD92

attributeNameD93

java.sql.Timestamp attributeNameD93

attributeNameD94

java.sql.Timestamp attributeNameD94

attributeNameD95

java.sql.Timestamp attributeNameD95

attributeNameD96

java.sql.Timestamp attributeNameD96

attributeNameD97

java.sql.Timestamp attributeNameD97

attributeNameD98

java.sql.Timestamp attributeNameD98

attributeNameD99

java.sql.Timestamp attributeNameD99

attributeNameD100

java.sql.Timestamp attributeNameD100

attributeNameD101

java.sql.Timestamp attributeNameD101

attributeNameD102

java.sql.Timestamp attributeNameD102

attributeNameD103

java.sql.Timestamp attributeNameD103

attributeNameD104

java.sql.Timestamp attributeNameD104

attributeNameD105

java.sql.Timestamp attributeNameD105

attributeNameD106

java.sql.Timestamp attributeNameD106

attributeNameD107

java.sql.Timestamp attributeNameD107

attributeNameD108

java.sql.Timestamp attributeNameD108

attributeNameD109

java.sql.Timestamp attributeNameD109

attributeNameD110

java.sql.Timestamp attributeNameD110

attributeNameD111

java.sql.Timestamp attributeNameD111

attributeNameD112

java.sql.Timestamp attributeNameD112

attributeNameD113

java.sql.Timestamp attributeNameD113

attributeNameD114

java.sql.Timestamp attributeNameD114

attributeNameD115

java.sql.Timestamp attributeNameD115

attributeNameD116

java.sql.Timestamp attributeNameD116

attributeNameD117

java.sql.Timestamp attributeNameD117

attributeNameD118

java.sql.Timestamp attributeNameD118

attributeNameD119

java.sql.Timestamp attributeNameD119

attributeNameD120

java.sql.Timestamp attributeNameD120

attributeNameD121

java.sql.Timestamp attributeNameD121

attributeNameD122

java.sql.Timestamp attributeNameD122

attributeNameD123

java.sql.Timestamp attributeNameD123

attributeNameD124

java.sql.Timestamp attributeNameD124

attributeNameD125

java.sql.Timestamp attributeNameD125

attributeNameD126

java.sql.Timestamp attributeNameD126

attributeNameD127

java.sql.Timestamp attributeNameD127

attributeNameD128

java.sql.Timestamp attributeNameD128

attributeNameD129

java.sql.Timestamp attributeNameD129

attributeNameD130

java.sql.Timestamp attributeNameD130

attributeNameD131

java.sql.Timestamp attributeNameD131

attributeNameD132

java.sql.Timestamp attributeNameD132

attributeNameD133

java.sql.Timestamp attributeNameD133

attributeNameD134

java.sql.Timestamp attributeNameD134

attributeNameD135

java.sql.Timestamp attributeNameD135

attributeNameD136

java.sql.Timestamp attributeNameD136

attributeNameD137

java.sql.Timestamp attributeNameD137

attributeNameD138

java.sql.Timestamp attributeNameD138

attributeNameD139

java.sql.Timestamp attributeNameD139

attributeNameD140

java.sql.Timestamp attributeNameD140

attributeNameD141

java.sql.Timestamp attributeNameD141

attributeNameD142

java.sql.Timestamp attributeNameD142

attributeNameD143

java.sql.Timestamp attributeNameD143

attributeNameD144

java.sql.Timestamp attributeNameD144

attributeNameD145

java.sql.Timestamp attributeNameD145

attributeNameD146

java.sql.Timestamp attributeNameD146

attributeNameD147

java.sql.Timestamp attributeNameD147

attributeNameD148

java.sql.Timestamp attributeNameD148

attributeNameD149

java.sql.Timestamp attributeNameD149

attributeNameD150

java.sql.Timestamp attributeNameD150

attributeNameD151

java.sql.Timestamp attributeNameD151

attributeNameD152

java.sql.Timestamp attributeNameD152

attributeNameD153

java.sql.Timestamp attributeNameD153

attributeNameD154

java.sql.Timestamp attributeNameD154

attributeNameD155

java.sql.Timestamp attributeNameD155

attributeNameD156

java.sql.Timestamp attributeNameD156

attributeNameD157

java.sql.Timestamp attributeNameD157

attributeNameD158

java.sql.Timestamp attributeNameD158

attributeNameD159

java.sql.Timestamp attributeNameD159

attributeNameD160

java.sql.Timestamp attributeNameD160

attributeNameD161

java.sql.Timestamp attributeNameD161

attributeNameD162

java.sql.Timestamp attributeNameD162

attributeNameD163

java.sql.Timestamp attributeNameD163

attributeNameD164

java.sql.Timestamp attributeNameD164

attributeNameD165

java.sql.Timestamp attributeNameD165

attributeNameD166

java.sql.Timestamp attributeNameD166

attributeNameD167

java.sql.Timestamp attributeNameD167

attributeNameD168

java.sql.Timestamp attributeNameD168

attributeNameD169

java.sql.Timestamp attributeNameD169

attributeNameD170

java.sql.Timestamp attributeNameD170

attributeNameD171

java.sql.Timestamp attributeNameD171

attributeNameD172

java.sql.Timestamp attributeNameD172

attributeNameD173

java.sql.Timestamp attributeNameD173

attributeNameD174

java.sql.Timestamp attributeNameD174

attributeNameD175

java.sql.Timestamp attributeNameD175

attributeNameD176

java.sql.Timestamp attributeNameD176

attributeNameD177

java.sql.Timestamp attributeNameD177

attributeNameD178

java.sql.Timestamp attributeNameD178

attributeNameD179

java.sql.Timestamp attributeNameD179

attributeNameD180

java.sql.Timestamp attributeNameD180

attributeNameD181

java.sql.Timestamp attributeNameD181

attributeNameD182

java.sql.Timestamp attributeNameD182

attributeNameD183

java.sql.Timestamp attributeNameD183

attributeNameD184

java.sql.Timestamp attributeNameD184

attributeNameD185

java.sql.Timestamp attributeNameD185

attributeNameD186

java.sql.Timestamp attributeNameD186

attributeNameD187

java.sql.Timestamp attributeNameD187

attributeNameD188

java.sql.Timestamp attributeNameD188

attributeNameD189

java.sql.Timestamp attributeNameD189

attributeNameD190

java.sql.Timestamp attributeNameD190

attributeNameD191

java.sql.Timestamp attributeNameD191

attributeNameD192

java.sql.Timestamp attributeNameD192

attributeNameD193

java.sql.Timestamp attributeNameD193

attributeNameD194

java.sql.Timestamp attributeNameD194

attributeNameD195

java.sql.Timestamp attributeNameD195

attributeNameD196

java.sql.Timestamp attributeNameD196

attributeNameD197

java.sql.Timestamp attributeNameD197

attributeNameD198

java.sql.Timestamp attributeNameD198

attributeNameD199

java.sql.Timestamp attributeNameD199

attributeNameD200

java.sql.Timestamp attributeNameD200

attributeNameD201

java.sql.Timestamp attributeNameD201

attributeNameD202

java.sql.Timestamp attributeNameD202

attributeNameD203

java.sql.Timestamp attributeNameD203

attributeNameD204

java.sql.Timestamp attributeNameD204

attributeNameD205

java.sql.Timestamp attributeNameD205

attributeNameD206

java.sql.Timestamp attributeNameD206

attributeNameD207

java.sql.Timestamp attributeNameD207

attributeNameD208

java.sql.Timestamp attributeNameD208

attributeNameD209

java.sql.Timestamp attributeNameD209

attributeNameD210

java.sql.Timestamp attributeNameD210

attributeNameD211

java.sql.Timestamp attributeNameD211

attributeNameD212

java.sql.Timestamp attributeNameD212

attributeNameD213

java.sql.Timestamp attributeNameD213

attributeNameD214

java.sql.Timestamp attributeNameD214

attributeNameD215

java.sql.Timestamp attributeNameD215

attributeNameD216

java.sql.Timestamp attributeNameD216

attributeNameD217

java.sql.Timestamp attributeNameD217

attributeNameD218

java.sql.Timestamp attributeNameD218

attributeNameD219

java.sql.Timestamp attributeNameD219

attributeNameD220

java.sql.Timestamp attributeNameD220

attributeNameD221

java.sql.Timestamp attributeNameD221

attributeNameD222

java.sql.Timestamp attributeNameD222

attributeNameD223

java.sql.Timestamp attributeNameD223

attributeNameD224

java.sql.Timestamp attributeNameD224

attributeNameD225

java.sql.Timestamp attributeNameD225

attributeNameD226

java.sql.Timestamp attributeNameD226

attributeNameD227

java.sql.Timestamp attributeNameD227

attributeNameD228

java.sql.Timestamp attributeNameD228

attributeNameD229

java.sql.Timestamp attributeNameD229

attributeNameD230

java.sql.Timestamp attributeNameD230

attributeNameD231

java.sql.Timestamp attributeNameD231

attributeNameD232

java.sql.Timestamp attributeNameD232

attributeNameD233

java.sql.Timestamp attributeNameD233

attributeNameD234

java.sql.Timestamp attributeNameD234

attributeNameD235

java.sql.Timestamp attributeNameD235

attributeNameD236

java.sql.Timestamp attributeNameD236

attributeNameD237

java.sql.Timestamp attributeNameD237

attributeNameD238

java.sql.Timestamp attributeNameD238

attributeNameD239

java.sql.Timestamp attributeNameD239

attributeNameD240

java.sql.Timestamp attributeNameD240

attributeNameD241

java.sql.Timestamp attributeNameD241

attributeNameD242

java.sql.Timestamp attributeNameD242

attributeNameD243

java.sql.Timestamp attributeNameD243

attributeNameD244

java.sql.Timestamp attributeNameD244

attributeNameD245

java.sql.Timestamp attributeNameD245

attributeNameD246

java.sql.Timestamp attributeNameD246

attributeNameD247

java.sql.Timestamp attributeNameD247

attributeNameD248

java.sql.Timestamp attributeNameD248

attributeNameD249

java.sql.Timestamp attributeNameD249

attributeNameD250

java.sql.Timestamp attributeNameD250

attributeNameD251

java.sql.Timestamp attributeNameD251

attributeNameD252

java.sql.Timestamp attributeNameD252

attributeNameD253

java.sql.Timestamp attributeNameD253

attributeNameD254

java.sql.Timestamp attributeNameD254

attributeNameD255

java.sql.Timestamp attributeNameD255

attributeNameD256

java.sql.Timestamp attributeNameD256

attributeNameD257

java.sql.Timestamp attributeNameD257

attributeNameD258

java.sql.Timestamp attributeNameD258

attributeNameD259

java.sql.Timestamp attributeNameD259

attributeNameD260

java.sql.Timestamp attributeNameD260

attributeNameD261

java.sql.Timestamp attributeNameD261

attributeNameD262

java.sql.Timestamp attributeNameD262

attributeNameD263

java.sql.Timestamp attributeNameD263

attributeNameD264

java.sql.Timestamp attributeNameD264

attributeNameD265

java.sql.Timestamp attributeNameD265

attributeNameD266

java.sql.Timestamp attributeNameD266

attributeNameD267

java.sql.Timestamp attributeNameD267

attributeNameD268

java.sql.Timestamp attributeNameD268

attributeNameD269

java.sql.Timestamp attributeNameD269

attributeNameD270

java.sql.Timestamp attributeNameD270

attributeNameD271

java.sql.Timestamp attributeNameD271

attributeNameD272

java.sql.Timestamp attributeNameD272

attributeNameD273

java.sql.Timestamp attributeNameD273

attributeNameD274

java.sql.Timestamp attributeNameD274

attributeNameD275

java.sql.Timestamp attributeNameD275

attributeNameD276

java.sql.Timestamp attributeNameD276

attributeNameD277

java.sql.Timestamp attributeNameD277

attributeNameD278

java.sql.Timestamp attributeNameD278

attributeNameD279

java.sql.Timestamp attributeNameD279

attributeNameD280

java.sql.Timestamp attributeNameD280

attributeNameD281

java.sql.Timestamp attributeNameD281

attributeNameD282

java.sql.Timestamp attributeNameD282

attributeNameD283

java.sql.Timestamp attributeNameD283

attributeNameD284

java.sql.Timestamp attributeNameD284

attributeNameD285

java.sql.Timestamp attributeNameD285

attributeNameD286

java.sql.Timestamp attributeNameD286

attributeNameD287

java.sql.Timestamp attributeNameD287

attributeNameD288

java.sql.Timestamp attributeNameD288

attributeNameD289

java.sql.Timestamp attributeNameD289

attributeNameD290

java.sql.Timestamp attributeNameD290

attributeNameD291

java.sql.Timestamp attributeNameD291

attributeNameD292

java.sql.Timestamp attributeNameD292

attributeNameD293

java.sql.Timestamp attributeNameD293

attributeNameD294

java.sql.Timestamp attributeNameD294

attributeNameD295

java.sql.Timestamp attributeNameD295

attributeNameD296

java.sql.Timestamp attributeNameD296

attributeNameD297

java.sql.Timestamp attributeNameD297

attributeNameD298

java.sql.Timestamp attributeNameD298

attributeNameD299

java.sql.Timestamp attributeNameD299

attributeNameD300

java.sql.Timestamp attributeNameD300

attributeNameD301

java.sql.Timestamp attributeNameD301

attributeNameD302

java.sql.Timestamp attributeNameD302

attributeNameD303

java.sql.Timestamp attributeNameD303

attributeNameD304

java.sql.Timestamp attributeNameD304

attributeNameD305

java.sql.Timestamp attributeNameD305

attributeNameD306

java.sql.Timestamp attributeNameD306

attributeNameD307

java.sql.Timestamp attributeNameD307

attributeNameD308

java.sql.Timestamp attributeNameD308

attributeNameD309

java.sql.Timestamp attributeNameD309

attributeNameD310

java.sql.Timestamp attributeNameD310

attributeNameD311

java.sql.Timestamp attributeNameD311

attributeNameD312

java.sql.Timestamp attributeNameD312

attributeNameD313

java.sql.Timestamp attributeNameD313

attributeNameD314

java.sql.Timestamp attributeNameD314

attributeNameD315

java.sql.Timestamp attributeNameD315

attributeNameD316

java.sql.Timestamp attributeNameD316

attributeNameD317

java.sql.Timestamp attributeNameD317

attributeNameD318

java.sql.Timestamp attributeNameD318

attributeNameD319

java.sql.Timestamp attributeNameD319

attributeNameD320

java.sql.Timestamp attributeNameD320

attributeNameD321

java.sql.Timestamp attributeNameD321

attributeNameD322

java.sql.Timestamp attributeNameD322

attributeNameD323

java.sql.Timestamp attributeNameD323

attributeNameD324

java.sql.Timestamp attributeNameD324

attributeNameD325

java.sql.Timestamp attributeNameD325

attributeNameD326

java.sql.Timestamp attributeNameD326

attributeNameD327

java.sql.Timestamp attributeNameD327

attributeNameD328

java.sql.Timestamp attributeNameD328

attributeNameD329

java.sql.Timestamp attributeNameD329

attributeNameD330

java.sql.Timestamp attributeNameD330

attributeNameD331

java.sql.Timestamp attributeNameD331

attributeNameD332

java.sql.Timestamp attributeNameD332

attributeNameD333

java.sql.Timestamp attributeNameD333

attributeNameD334

java.sql.Timestamp attributeNameD334

attributeNameD335

java.sql.Timestamp attributeNameD335

attributeNameD336

java.sql.Timestamp attributeNameD336

attributeNameD337

java.sql.Timestamp attributeNameD337

attributeNameD338

java.sql.Timestamp attributeNameD338

attributeNameD339

java.sql.Timestamp attributeNameD339

attributeNameD340

java.sql.Timestamp attributeNameD340

attributeNameD341

java.sql.Timestamp attributeNameD341

attributeNameD342

java.sql.Timestamp attributeNameD342

attributeNameD343

java.sql.Timestamp attributeNameD343

attributeNameD344

java.sql.Timestamp attributeNameD344

attributeNameD345

java.sql.Timestamp attributeNameD345

attributeNameD346

java.sql.Timestamp attributeNameD346

attributeNameD347

java.sql.Timestamp attributeNameD347

attributeNameD348

java.sql.Timestamp attributeNameD348

attributeNameD349

java.sql.Timestamp attributeNameD349

attributeNameD350

java.sql.Timestamp attributeNameD350

attributeNameD351

java.sql.Timestamp attributeNameD351

attributeNameD352

java.sql.Timestamp attributeNameD352

attributeNameD353

java.sql.Timestamp attributeNameD353

attributeNameD354

java.sql.Timestamp attributeNameD354

attributeNameD355

java.sql.Timestamp attributeNameD355

attributeNameD356

java.sql.Timestamp attributeNameD356

attributeNameD357

java.sql.Timestamp attributeNameD357

attributeNameD358

java.sql.Timestamp attributeNameD358

attributeNameD359

java.sql.Timestamp attributeNameD359

attributeNameD360

java.sql.Timestamp attributeNameD360

attributeNameD361

java.sql.Timestamp attributeNameD361

attributeNameD362

java.sql.Timestamp attributeNameD362

attributeNameD363

java.sql.Timestamp attributeNameD363

attributeNameD364

java.sql.Timestamp attributeNameD364

attributeNameD365

java.sql.Timestamp attributeNameD365

attributeNameD366

java.sql.Timestamp attributeNameD366

attributeNameD367

java.sql.Timestamp attributeNameD367

attributeNameD368

java.sql.Timestamp attributeNameD368

attributeNameD369

java.sql.Timestamp attributeNameD369

attributeNameD370

java.sql.Timestamp attributeNameD370

attributeNameD371

java.sql.Timestamp attributeNameD371

attributeNameD372

java.sql.Timestamp attributeNameD372

attributeNameD373

java.sql.Timestamp attributeNameD373

attributeNameD374

java.sql.Timestamp attributeNameD374

attributeNameD375

java.sql.Timestamp attributeNameD375

attributeNameD376

java.sql.Timestamp attributeNameD376

attributeNameD377

java.sql.Timestamp attributeNameD377

attributeNameD378

java.sql.Timestamp attributeNameD378

attributeNameD379

java.sql.Timestamp attributeNameD379

attributeNameD380

java.sql.Timestamp attributeNameD380

attributeNameD381

java.sql.Timestamp attributeNameD381

attributeNameD382

java.sql.Timestamp attributeNameD382

attributeNameD383

java.sql.Timestamp attributeNameD383

attributeNameD384

java.sql.Timestamp attributeNameD384

attributeNameD385

java.sql.Timestamp attributeNameD385

attributeNameD386

java.sql.Timestamp attributeNameD386

attributeNameD387

java.sql.Timestamp attributeNameD387

attributeNameD388

java.sql.Timestamp attributeNameD388

attributeNameD389

java.sql.Timestamp attributeNameD389

attributeNameD390

java.sql.Timestamp attributeNameD390

attributeNameD391

java.sql.Timestamp attributeNameD391

attributeNameD392

java.sql.Timestamp attributeNameD392

attributeNameD393

java.sql.Timestamp attributeNameD393

attributeNameD394

java.sql.Timestamp attributeNameD394

attributeNameD395

java.sql.Timestamp attributeNameD395

attributeNameD396

java.sql.Timestamp attributeNameD396

attributeNameD397

java.sql.Timestamp attributeNameD397

attributeNameD398

java.sql.Timestamp attributeNameD398

attributeNameD399

java.sql.Timestamp attributeNameD399

attributeNameD400

java.sql.Timestamp attributeNameD400

attributeNameD401

java.sql.Timestamp attributeNameD401

attributeNameD402

java.sql.Timestamp attributeNameD402

attributeNameD403

java.sql.Timestamp attributeNameD403

attributeNameD404

java.sql.Timestamp attributeNameD404

attributeNameD405

java.sql.Timestamp attributeNameD405

attributeNameD406

java.sql.Timestamp attributeNameD406

attributeNameD407

java.sql.Timestamp attributeNameD407

attributeNameD408

java.sql.Timestamp attributeNameD408

attributeNameD409

java.sql.Timestamp attributeNameD409

attributeNameD410

java.sql.Timestamp attributeNameD410

attributeNameD411

java.sql.Timestamp attributeNameD411

attributeNameD412

java.sql.Timestamp attributeNameD412

attributeNameD413

java.sql.Timestamp attributeNameD413

attributeNameD414

java.sql.Timestamp attributeNameD414

attributeNameD415

java.sql.Timestamp attributeNameD415

attributeNameD416

java.sql.Timestamp attributeNameD416

attributeNameD417

java.sql.Timestamp attributeNameD417

attributeNameD418

java.sql.Timestamp attributeNameD418

attributeNameD419

java.sql.Timestamp attributeNameD419

attributeNameD420

java.sql.Timestamp attributeNameD420

attributeNameD421

java.sql.Timestamp attributeNameD421

attributeNameD422

java.sql.Timestamp attributeNameD422

attributeNameD423

java.sql.Timestamp attributeNameD423

attributeNameD424

java.sql.Timestamp attributeNameD424

attributeNameD425

java.sql.Timestamp attributeNameD425

attributeNameD426

java.sql.Timestamp attributeNameD426

attributeNameD427

java.sql.Timestamp attributeNameD427

attributeNameD428

java.sql.Timestamp attributeNameD428

attributeNameD429

java.sql.Timestamp attributeNameD429

attributeNameD430

java.sql.Timestamp attributeNameD430

attributeNameD431

java.sql.Timestamp attributeNameD431

attributeNameD432

java.sql.Timestamp attributeNameD432

attributeNameD433

java.sql.Timestamp attributeNameD433

attributeNameD434

java.sql.Timestamp attributeNameD434

attributeNameD435

java.sql.Timestamp attributeNameD435

attributeNameD436

java.sql.Timestamp attributeNameD436

attributeNameD437

java.sql.Timestamp attributeNameD437

attributeNameD438

java.sql.Timestamp attributeNameD438

attributeNameD439

java.sql.Timestamp attributeNameD439

attributeNameD440

java.sql.Timestamp attributeNameD440

attributeNameD441

java.sql.Timestamp attributeNameD441

attributeNameD442

java.sql.Timestamp attributeNameD442

attributeNameD443

java.sql.Timestamp attributeNameD443

attributeNameD444

java.sql.Timestamp attributeNameD444

attributeNameD445

java.sql.Timestamp attributeNameD445

attributeNameD446

java.sql.Timestamp attributeNameD446

attributeNameD447

java.sql.Timestamp attributeNameD447

attributeNameD448

java.sql.Timestamp attributeNameD448

attributeNameD449

java.sql.Timestamp attributeNameD449

attributeNameD450

java.sql.Timestamp attributeNameD450

attributeNameD451

java.sql.Timestamp attributeNameD451

attributeNameD452

java.sql.Timestamp attributeNameD452

attributeNameD453

java.sql.Timestamp attributeNameD453

attributeNameD454

java.sql.Timestamp attributeNameD454

attributeNameD455

java.sql.Timestamp attributeNameD455

attributeNameD456

java.sql.Timestamp attributeNameD456

attributeNameD457

java.sql.Timestamp attributeNameD457

attributeNameD458

java.sql.Timestamp attributeNameD458

attributeNameD459

java.sql.Timestamp attributeNameD459

attributeNameD460

java.sql.Timestamp attributeNameD460

attributeNameD461

java.sql.Timestamp attributeNameD461

attributeNameD462

java.sql.Timestamp attributeNameD462

attributeNameD463

java.sql.Timestamp attributeNameD463

attributeNameD464

java.sql.Timestamp attributeNameD464

attributeNameD465

java.sql.Timestamp attributeNameD465

attributeNameD466

java.sql.Timestamp attributeNameD466

attributeNameD467

java.sql.Timestamp attributeNameD467

attributeNameD468

java.sql.Timestamp attributeNameD468

attributeNameD469

java.sql.Timestamp attributeNameD469

attributeNameD470

java.sql.Timestamp attributeNameD470

attributeNameD471

java.sql.Timestamp attributeNameD471

attributeNameD472

java.sql.Timestamp attributeNameD472

attributeNameD473

java.sql.Timestamp attributeNameD473

attributeNameD474

java.sql.Timestamp attributeNameD474

attributeNameD475

java.sql.Timestamp attributeNameD475

attributeNameD476

java.sql.Timestamp attributeNameD476

attributeNameD477

java.sql.Timestamp attributeNameD477

attributeNameD478

java.sql.Timestamp attributeNameD478

attributeNameD479

java.sql.Timestamp attributeNameD479

attributeNameD480

java.sql.Timestamp attributeNameD480

attributeNameD481

java.sql.Timestamp attributeNameD481

attributeNameD482

java.sql.Timestamp attributeNameD482

attributeNameD483

java.sql.Timestamp attributeNameD483

attributeNameD484

java.sql.Timestamp attributeNameD484

attributeNameD485

java.sql.Timestamp attributeNameD485

attributeNameD486

java.sql.Timestamp attributeNameD486

attributeNameD487

java.sql.Timestamp attributeNameD487

attributeNameD488

java.sql.Timestamp attributeNameD488

attributeNameD489

java.sql.Timestamp attributeNameD489

attributeNameD490

java.sql.Timestamp attributeNameD490

attributeNameD491

java.sql.Timestamp attributeNameD491

attributeNameD492

java.sql.Timestamp attributeNameD492

attributeNameD493

java.sql.Timestamp attributeNameD493

attributeNameD494

java.sql.Timestamp attributeNameD494

attributeNameD495

java.sql.Timestamp attributeNameD495

attributeNameD496

java.sql.Timestamp attributeNameD496

attributeNameD497

java.sql.Timestamp attributeNameD497

attributeNameD498

java.sql.Timestamp attributeNameD498

attributeNameD499

java.sql.Timestamp attributeNameD499

attributeNameN0

java.math.BigDecimal attributeNameN0

attributeNameN1

java.math.BigDecimal attributeNameN1

attributeNameN2

java.math.BigDecimal attributeNameN2

attributeNameN3

java.math.BigDecimal attributeNameN3

attributeNameN4

java.math.BigDecimal attributeNameN4

attributeNameN5

java.math.BigDecimal attributeNameN5

attributeNameN6

java.math.BigDecimal attributeNameN6

attributeNameN7

java.math.BigDecimal attributeNameN7

attributeNameN8

java.math.BigDecimal attributeNameN8

attributeNameN9

java.math.BigDecimal attributeNameN9

attributeNameN10

java.math.BigDecimal attributeNameN10

attributeNameN11

java.math.BigDecimal attributeNameN11

attributeNameN12

java.math.BigDecimal attributeNameN12

attributeNameN13

java.math.BigDecimal attributeNameN13

attributeNameN14

java.math.BigDecimal attributeNameN14

attributeNameN15

java.math.BigDecimal attributeNameN15

attributeNameN16

java.math.BigDecimal attributeNameN16

attributeNameN17

java.math.BigDecimal attributeNameN17

attributeNameN18

java.math.BigDecimal attributeNameN18

attributeNameN19

java.math.BigDecimal attributeNameN19

attributeNameN20

java.math.BigDecimal attributeNameN20

attributeNameN21

java.math.BigDecimal attributeNameN21

attributeNameN22

java.math.BigDecimal attributeNameN22

attributeNameN23

java.math.BigDecimal attributeNameN23

attributeNameN24

java.math.BigDecimal attributeNameN24

attributeNameN25

java.math.BigDecimal attributeNameN25

attributeNameN26

java.math.BigDecimal attributeNameN26

attributeNameN27

java.math.BigDecimal attributeNameN27

attributeNameN28

java.math.BigDecimal attributeNameN28

attributeNameN29

java.math.BigDecimal attributeNameN29

attributeNameN30

java.math.BigDecimal attributeNameN30

attributeNameN31

java.math.BigDecimal attributeNameN31

attributeNameN32

java.math.BigDecimal attributeNameN32

attributeNameN33

java.math.BigDecimal attributeNameN33

attributeNameN34

java.math.BigDecimal attributeNameN34

attributeNameN35

java.math.BigDecimal attributeNameN35

attributeNameN36

java.math.BigDecimal attributeNameN36

attributeNameN37

java.math.BigDecimal attributeNameN37

attributeNameN38

java.math.BigDecimal attributeNameN38

attributeNameN39

java.math.BigDecimal attributeNameN39

attributeNameN40

java.math.BigDecimal attributeNameN40

attributeNameN41

java.math.BigDecimal attributeNameN41

attributeNameN42

java.math.BigDecimal attributeNameN42

attributeNameN43

java.math.BigDecimal attributeNameN43

attributeNameN44

java.math.BigDecimal attributeNameN44

attributeNameN45

java.math.BigDecimal attributeNameN45

attributeNameN46

java.math.BigDecimal attributeNameN46

attributeNameN47

java.math.BigDecimal attributeNameN47

attributeNameN48

java.math.BigDecimal attributeNameN48

attributeNameN49

java.math.BigDecimal attributeNameN49

attributeNameN50

java.math.BigDecimal attributeNameN50

attributeNameN51

java.math.BigDecimal attributeNameN51

attributeNameN52

java.math.BigDecimal attributeNameN52

attributeNameN53

java.math.BigDecimal attributeNameN53

attributeNameN54

java.math.BigDecimal attributeNameN54

attributeNameN55

java.math.BigDecimal attributeNameN55

attributeNameN56

java.math.BigDecimal attributeNameN56

attributeNameN57

java.math.BigDecimal attributeNameN57

attributeNameN58

java.math.BigDecimal attributeNameN58

attributeNameN59

java.math.BigDecimal attributeNameN59

attributeNameN60

java.math.BigDecimal attributeNameN60

attributeNameN61

java.math.BigDecimal attributeNameN61

attributeNameN62

java.math.BigDecimal attributeNameN62

attributeNameN63

java.math.BigDecimal attributeNameN63

attributeNameN64

java.math.BigDecimal attributeNameN64

attributeNameN65

java.math.BigDecimal attributeNameN65

attributeNameN66

java.math.BigDecimal attributeNameN66

attributeNameN67

java.math.BigDecimal attributeNameN67

attributeNameN68

java.math.BigDecimal attributeNameN68

attributeNameN69

java.math.BigDecimal attributeNameN69

attributeNameN70

java.math.BigDecimal attributeNameN70

attributeNameN71

java.math.BigDecimal attributeNameN71

attributeNameN72

java.math.BigDecimal attributeNameN72

attributeNameN73

java.math.BigDecimal attributeNameN73

attributeNameN74

java.math.BigDecimal attributeNameN74

attributeNameN75

java.math.BigDecimal attributeNameN75

attributeNameN76

java.math.BigDecimal attributeNameN76

attributeNameN77

java.math.BigDecimal attributeNameN77

attributeNameN78

java.math.BigDecimal attributeNameN78

attributeNameN79

java.math.BigDecimal attributeNameN79

attributeNameN80

java.math.BigDecimal attributeNameN80

attributeNameN81

java.math.BigDecimal attributeNameN81

attributeNameN82

java.math.BigDecimal attributeNameN82

attributeNameN83

java.math.BigDecimal attributeNameN83

attributeNameN84

java.math.BigDecimal attributeNameN84

attributeNameN85

java.math.BigDecimal attributeNameN85

attributeNameN86

java.math.BigDecimal attributeNameN86

attributeNameN87

java.math.BigDecimal attributeNameN87

attributeNameN88

java.math.BigDecimal attributeNameN88

attributeNameN89

java.math.BigDecimal attributeNameN89

attributeNameN90

java.math.BigDecimal attributeNameN90

attributeNameN91

java.math.BigDecimal attributeNameN91

attributeNameN92

java.math.BigDecimal attributeNameN92

attributeNameN93

java.math.BigDecimal attributeNameN93

attributeNameN94

java.math.BigDecimal attributeNameN94

attributeNameN95

java.math.BigDecimal attributeNameN95

attributeNameN96

java.math.BigDecimal attributeNameN96

attributeNameN97

java.math.BigDecimal attributeNameN97

attributeNameN98

java.math.BigDecimal attributeNameN98

attributeNameN99

java.math.BigDecimal attributeNameN99

attributeNameN100

java.math.BigDecimal attributeNameN100

attributeNameN101

java.math.BigDecimal attributeNameN101

attributeNameN102

java.math.BigDecimal attributeNameN102

attributeNameN103

java.math.BigDecimal attributeNameN103

attributeNameN104

java.math.BigDecimal attributeNameN104

attributeNameN105

java.math.BigDecimal attributeNameN105

attributeNameN106

java.math.BigDecimal attributeNameN106

attributeNameN107

java.math.BigDecimal attributeNameN107

attributeNameN108

java.math.BigDecimal attributeNameN108

attributeNameN109

java.math.BigDecimal attributeNameN109

attributeNameN110

java.math.BigDecimal attributeNameN110

attributeNameN111

java.math.BigDecimal attributeNameN111

attributeNameN112

java.math.BigDecimal attributeNameN112

attributeNameN113

java.math.BigDecimal attributeNameN113

attributeNameN114

java.math.BigDecimal attributeNameN114

attributeNameN115

java.math.BigDecimal attributeNameN115

attributeNameN116

java.math.BigDecimal attributeNameN116

attributeNameN117

java.math.BigDecimal attributeNameN117

attributeNameN118

java.math.BigDecimal attributeNameN118

attributeNameN119

java.math.BigDecimal attributeNameN119

attributeNameN120

java.math.BigDecimal attributeNameN120

attributeNameN121

java.math.BigDecimal attributeNameN121

attributeNameN122

java.math.BigDecimal attributeNameN122

attributeNameN123

java.math.BigDecimal attributeNameN123

attributeNameN124

java.math.BigDecimal attributeNameN124

attributeNameN125

java.math.BigDecimal attributeNameN125

attributeNameN126

java.math.BigDecimal attributeNameN126

attributeNameN127

java.math.BigDecimal attributeNameN127

attributeNameN128

java.math.BigDecimal attributeNameN128

attributeNameN129

java.math.BigDecimal attributeNameN129

attributeNameN130

java.math.BigDecimal attributeNameN130

attributeNameN131

java.math.BigDecimal attributeNameN131

attributeNameN132

java.math.BigDecimal attributeNameN132

attributeNameN133

java.math.BigDecimal attributeNameN133

attributeNameN134

java.math.BigDecimal attributeNameN134

attributeNameN135

java.math.BigDecimal attributeNameN135

attributeNameN136

java.math.BigDecimal attributeNameN136

attributeNameN137

java.math.BigDecimal attributeNameN137

attributeNameN138

java.math.BigDecimal attributeNameN138

attributeNameN139

java.math.BigDecimal attributeNameN139

attributeNameN140

java.math.BigDecimal attributeNameN140

attributeNameN141

java.math.BigDecimal attributeNameN141

attributeNameN142

java.math.BigDecimal attributeNameN142

attributeNameN143

java.math.BigDecimal attributeNameN143

attributeNameN144

java.math.BigDecimal attributeNameN144

attributeNameN145

java.math.BigDecimal attributeNameN145

attributeNameN146

java.math.BigDecimal attributeNameN146

attributeNameN147

java.math.BigDecimal attributeNameN147

attributeNameN148

java.math.BigDecimal attributeNameN148

attributeNameN149

java.math.BigDecimal attributeNameN149

attributeNameN150

java.math.BigDecimal attributeNameN150

attributeNameN151

java.math.BigDecimal attributeNameN151

attributeNameN152

java.math.BigDecimal attributeNameN152

attributeNameN153

java.math.BigDecimal attributeNameN153

attributeNameN154

java.math.BigDecimal attributeNameN154

attributeNameN155

java.math.BigDecimal attributeNameN155

attributeNameN156

java.math.BigDecimal attributeNameN156

attributeNameN157

java.math.BigDecimal attributeNameN157

attributeNameN158

java.math.BigDecimal attributeNameN158

attributeNameN159

java.math.BigDecimal attributeNameN159

attributeNameN160

java.math.BigDecimal attributeNameN160

attributeNameN161

java.math.BigDecimal attributeNameN161

attributeNameN162

java.math.BigDecimal attributeNameN162

attributeNameN163

java.math.BigDecimal attributeNameN163

attributeNameN164

java.math.BigDecimal attributeNameN164

attributeNameN165

java.math.BigDecimal attributeNameN165

attributeNameN166

java.math.BigDecimal attributeNameN166

attributeNameN167

java.math.BigDecimal attributeNameN167

attributeNameN168

java.math.BigDecimal attributeNameN168

attributeNameN169

java.math.BigDecimal attributeNameN169

attributeNameN170

java.math.BigDecimal attributeNameN170

attributeNameN171

java.math.BigDecimal attributeNameN171

attributeNameN172

java.math.BigDecimal attributeNameN172

attributeNameN173

java.math.BigDecimal attributeNameN173

attributeNameN174

java.math.BigDecimal attributeNameN174

attributeNameN175

java.math.BigDecimal attributeNameN175

attributeNameN176

java.math.BigDecimal attributeNameN176

attributeNameN177

java.math.BigDecimal attributeNameN177

attributeNameN178

java.math.BigDecimal attributeNameN178

attributeNameN179

java.math.BigDecimal attributeNameN179

attributeNameN180

java.math.BigDecimal attributeNameN180

attributeNameN181

java.math.BigDecimal attributeNameN181

attributeNameN182

java.math.BigDecimal attributeNameN182

attributeNameN183

java.math.BigDecimal attributeNameN183

attributeNameN184

java.math.BigDecimal attributeNameN184

attributeNameN185

java.math.BigDecimal attributeNameN185

attributeNameN186

java.math.BigDecimal attributeNameN186

attributeNameN187

java.math.BigDecimal attributeNameN187

attributeNameN188

java.math.BigDecimal attributeNameN188

attributeNameN189

java.math.BigDecimal attributeNameN189

attributeNameN190

java.math.BigDecimal attributeNameN190

attributeNameN191

java.math.BigDecimal attributeNameN191

attributeNameN192

java.math.BigDecimal attributeNameN192

attributeNameN193

java.math.BigDecimal attributeNameN193

attributeNameN194

java.math.BigDecimal attributeNameN194

attributeNameN195

java.math.BigDecimal attributeNameN195

attributeNameN196

java.math.BigDecimal attributeNameN196

attributeNameN197

java.math.BigDecimal attributeNameN197

attributeNameN198

java.math.BigDecimal attributeNameN198

attributeNameN199

java.math.BigDecimal attributeNameN199

attributeNameN200

java.math.BigDecimal attributeNameN200

attributeNameN201

java.math.BigDecimal attributeNameN201

attributeNameN202

java.math.BigDecimal attributeNameN202

attributeNameN203

java.math.BigDecimal attributeNameN203

attributeNameN204

java.math.BigDecimal attributeNameN204

attributeNameN205

java.math.BigDecimal attributeNameN205

attributeNameN206

java.math.BigDecimal attributeNameN206

attributeNameN207

java.math.BigDecimal attributeNameN207

attributeNameN208

java.math.BigDecimal attributeNameN208

attributeNameN209

java.math.BigDecimal attributeNameN209

attributeNameN210

java.math.BigDecimal attributeNameN210

attributeNameN211

java.math.BigDecimal attributeNameN211

attributeNameN212

java.math.BigDecimal attributeNameN212

attributeNameN213

java.math.BigDecimal attributeNameN213

attributeNameN214

java.math.BigDecimal attributeNameN214

attributeNameN215

java.math.BigDecimal attributeNameN215

attributeNameN216

java.math.BigDecimal attributeNameN216

attributeNameN217

java.math.BigDecimal attributeNameN217

attributeNameN218

java.math.BigDecimal attributeNameN218

attributeNameN219

java.math.BigDecimal attributeNameN219

attributeNameN220

java.math.BigDecimal attributeNameN220

attributeNameN221

java.math.BigDecimal attributeNameN221

attributeNameN222

java.math.BigDecimal attributeNameN222

attributeNameN223

java.math.BigDecimal attributeNameN223

attributeNameN224

java.math.BigDecimal attributeNameN224

attributeNameN225

java.math.BigDecimal attributeNameN225

attributeNameN226

java.math.BigDecimal attributeNameN226

attributeNameN227

java.math.BigDecimal attributeNameN227

attributeNameN228

java.math.BigDecimal attributeNameN228

attributeNameN229

java.math.BigDecimal attributeNameN229

attributeNameN230

java.math.BigDecimal attributeNameN230

attributeNameN231

java.math.BigDecimal attributeNameN231

attributeNameN232

java.math.BigDecimal attributeNameN232

attributeNameN233

java.math.BigDecimal attributeNameN233

attributeNameN234

java.math.BigDecimal attributeNameN234

attributeNameN235

java.math.BigDecimal attributeNameN235

attributeNameN236

java.math.BigDecimal attributeNameN236

attributeNameN237

java.math.BigDecimal attributeNameN237

attributeNameN238

java.math.BigDecimal attributeNameN238

attributeNameN239

java.math.BigDecimal attributeNameN239

attributeNameN240

java.math.BigDecimal attributeNameN240

attributeNameN241

java.math.BigDecimal attributeNameN241

attributeNameN242

java.math.BigDecimal attributeNameN242

attributeNameN243

java.math.BigDecimal attributeNameN243

attributeNameN244

java.math.BigDecimal attributeNameN244

attributeNameN245

java.math.BigDecimal attributeNameN245

attributeNameN246

java.math.BigDecimal attributeNameN246

attributeNameN247

java.math.BigDecimal attributeNameN247

attributeNameN248

java.math.BigDecimal attributeNameN248

attributeNameN249

java.math.BigDecimal attributeNameN249

attributeNameN250

java.math.BigDecimal attributeNameN250

attributeNameN251

java.math.BigDecimal attributeNameN251

attributeNameN252

java.math.BigDecimal attributeNameN252

attributeNameN253

java.math.BigDecimal attributeNameN253

attributeNameN254

java.math.BigDecimal attributeNameN254

attributeNameN255

java.math.BigDecimal attributeNameN255

attributeNameN256

java.math.BigDecimal attributeNameN256

attributeNameN257

java.math.BigDecimal attributeNameN257

attributeNameN258

java.math.BigDecimal attributeNameN258

attributeNameN259

java.math.BigDecimal attributeNameN259

attributeNameN260

java.math.BigDecimal attributeNameN260

attributeNameN261

java.math.BigDecimal attributeNameN261

attributeNameN262

java.math.BigDecimal attributeNameN262

attributeNameN263

java.math.BigDecimal attributeNameN263

attributeNameN264

java.math.BigDecimal attributeNameN264

attributeNameN265

java.math.BigDecimal attributeNameN265

attributeNameN266

java.math.BigDecimal attributeNameN266

attributeNameN267

java.math.BigDecimal attributeNameN267

attributeNameN268

java.math.BigDecimal attributeNameN268

attributeNameN269

java.math.BigDecimal attributeNameN269

attributeNameN270

java.math.BigDecimal attributeNameN270

attributeNameN271

java.math.BigDecimal attributeNameN271

attributeNameN272

java.math.BigDecimal attributeNameN272

attributeNameN273

java.math.BigDecimal attributeNameN273

attributeNameN274

java.math.BigDecimal attributeNameN274

attributeNameN275

java.math.BigDecimal attributeNameN275

attributeNameN276

java.math.BigDecimal attributeNameN276

attributeNameN277

java.math.BigDecimal attributeNameN277

attributeNameN278

java.math.BigDecimal attributeNameN278

attributeNameN279

java.math.BigDecimal attributeNameN279

attributeNameN280

java.math.BigDecimal attributeNameN280

attributeNameN281

java.math.BigDecimal attributeNameN281

attributeNameN282

java.math.BigDecimal attributeNameN282

attributeNameN283

java.math.BigDecimal attributeNameN283

attributeNameN284

java.math.BigDecimal attributeNameN284

attributeNameN285

java.math.BigDecimal attributeNameN285

attributeNameN286

java.math.BigDecimal attributeNameN286

attributeNameN287

java.math.BigDecimal attributeNameN287

attributeNameN288

java.math.BigDecimal attributeNameN288

attributeNameN289

java.math.BigDecimal attributeNameN289

attributeNameN290

java.math.BigDecimal attributeNameN290

attributeNameN291

java.math.BigDecimal attributeNameN291

attributeNameN292

java.math.BigDecimal attributeNameN292

attributeNameN293

java.math.BigDecimal attributeNameN293

attributeNameN294

java.math.BigDecimal attributeNameN294

attributeNameN295

java.math.BigDecimal attributeNameN295

attributeNameN296

java.math.BigDecimal attributeNameN296

attributeNameN297

java.math.BigDecimal attributeNameN297

attributeNameN298

java.math.BigDecimal attributeNameN298

attributeNameN299

java.math.BigDecimal attributeNameN299

attributeNameN300

java.math.BigDecimal attributeNameN300

attributeNameN301

java.math.BigDecimal attributeNameN301

attributeNameN302

java.math.BigDecimal attributeNameN302

attributeNameN303

java.math.BigDecimal attributeNameN303

attributeNameN304

java.math.BigDecimal attributeNameN304

attributeNameN305

java.math.BigDecimal attributeNameN305

attributeNameN306

java.math.BigDecimal attributeNameN306

attributeNameN307

java.math.BigDecimal attributeNameN307

attributeNameN308

java.math.BigDecimal attributeNameN308

attributeNameN309

java.math.BigDecimal attributeNameN309

attributeNameN310

java.math.BigDecimal attributeNameN310

attributeNameN311

java.math.BigDecimal attributeNameN311

attributeNameN312

java.math.BigDecimal attributeNameN312

attributeNameN313

java.math.BigDecimal attributeNameN313

attributeNameN314

java.math.BigDecimal attributeNameN314

attributeNameN315

java.math.BigDecimal attributeNameN315

attributeNameN316

java.math.BigDecimal attributeNameN316

attributeNameN317

java.math.BigDecimal attributeNameN317

attributeNameN318

java.math.BigDecimal attributeNameN318

attributeNameN319

java.math.BigDecimal attributeNameN319

attributeNameN320

java.math.BigDecimal attributeNameN320

attributeNameN321

java.math.BigDecimal attributeNameN321

attributeNameN322

java.math.BigDecimal attributeNameN322

attributeNameN323

java.math.BigDecimal attributeNameN323

attributeNameN324

java.math.BigDecimal attributeNameN324

attributeNameN325

java.math.BigDecimal attributeNameN325

attributeNameN326

java.math.BigDecimal attributeNameN326

attributeNameN327

java.math.BigDecimal attributeNameN327

attributeNameN328

java.math.BigDecimal attributeNameN328

attributeNameN329

java.math.BigDecimal attributeNameN329

attributeNameN330

java.math.BigDecimal attributeNameN330

attributeNameN331

java.math.BigDecimal attributeNameN331

attributeNameN332

java.math.BigDecimal attributeNameN332

attributeNameN333

java.math.BigDecimal attributeNameN333

attributeNameN334

java.math.BigDecimal attributeNameN334

attributeNameN335

java.math.BigDecimal attributeNameN335

attributeNameN336

java.math.BigDecimal attributeNameN336

attributeNameN337

java.math.BigDecimal attributeNameN337

attributeNameN338

java.math.BigDecimal attributeNameN338

attributeNameN339

java.math.BigDecimal attributeNameN339

attributeNameN340

java.math.BigDecimal attributeNameN340

attributeNameN341

java.math.BigDecimal attributeNameN341

attributeNameN342

java.math.BigDecimal attributeNameN342

attributeNameN343

java.math.BigDecimal attributeNameN343

attributeNameN344

java.math.BigDecimal attributeNameN344

attributeNameN345

java.math.BigDecimal attributeNameN345

attributeNameN346

java.math.BigDecimal attributeNameN346

attributeNameN347

java.math.BigDecimal attributeNameN347

attributeNameN348

java.math.BigDecimal attributeNameN348

attributeNameN349

java.math.BigDecimal attributeNameN349

attributeNameN350

java.math.BigDecimal attributeNameN350

attributeNameN351

java.math.BigDecimal attributeNameN351

attributeNameN352

java.math.BigDecimal attributeNameN352

attributeNameN353

java.math.BigDecimal attributeNameN353

attributeNameN354

java.math.BigDecimal attributeNameN354

attributeNameN355

java.math.BigDecimal attributeNameN355

attributeNameN356

java.math.BigDecimal attributeNameN356

attributeNameN357

java.math.BigDecimal attributeNameN357

attributeNameN358

java.math.BigDecimal attributeNameN358

attributeNameN359

java.math.BigDecimal attributeNameN359

attributeNameN360

java.math.BigDecimal attributeNameN360

attributeNameN361

java.math.BigDecimal attributeNameN361

attributeNameN362

java.math.BigDecimal attributeNameN362

attributeNameN363

java.math.BigDecimal attributeNameN363

attributeNameN364

java.math.BigDecimal attributeNameN364

attributeNameN365

java.math.BigDecimal attributeNameN365

attributeNameN366

java.math.BigDecimal attributeNameN366

attributeNameN367

java.math.BigDecimal attributeNameN367

attributeNameN368

java.math.BigDecimal attributeNameN368

attributeNameN369

java.math.BigDecimal attributeNameN369

attributeNameN370

java.math.BigDecimal attributeNameN370

attributeNameN371

java.math.BigDecimal attributeNameN371

attributeNameN372

java.math.BigDecimal attributeNameN372

attributeNameN373

java.math.BigDecimal attributeNameN373

attributeNameN374

java.math.BigDecimal attributeNameN374

attributeNameN375

java.math.BigDecimal attributeNameN375

attributeNameN376

java.math.BigDecimal attributeNameN376

attributeNameN377

java.math.BigDecimal attributeNameN377

attributeNameN378

java.math.BigDecimal attributeNameN378

attributeNameN379

java.math.BigDecimal attributeNameN379

attributeNameN380

java.math.BigDecimal attributeNameN380

attributeNameN381

java.math.BigDecimal attributeNameN381

attributeNameN382

java.math.BigDecimal attributeNameN382

attributeNameN383

java.math.BigDecimal attributeNameN383

attributeNameN384

java.math.BigDecimal attributeNameN384

attributeNameN385

java.math.BigDecimal attributeNameN385

attributeNameN386

java.math.BigDecimal attributeNameN386

attributeNameN387

java.math.BigDecimal attributeNameN387

attributeNameN388

java.math.BigDecimal attributeNameN388

attributeNameN389

java.math.BigDecimal attributeNameN389

attributeNameN390

java.math.BigDecimal attributeNameN390

attributeNameN391

java.math.BigDecimal attributeNameN391

attributeNameN392

java.math.BigDecimal attributeNameN392

attributeNameN393

java.math.BigDecimal attributeNameN393

attributeNameN394

java.math.BigDecimal attributeNameN394

attributeNameN395

java.math.BigDecimal attributeNameN395

attributeNameN396

java.math.BigDecimal attributeNameN396

attributeNameN397

java.math.BigDecimal attributeNameN397

attributeNameN398

java.math.BigDecimal attributeNameN398

attributeNameN399

java.math.BigDecimal attributeNameN399

attributeNameN400

java.math.BigDecimal attributeNameN400

attributeNameN401

java.math.BigDecimal attributeNameN401

attributeNameN402

java.math.BigDecimal attributeNameN402

attributeNameN403

java.math.BigDecimal attributeNameN403

attributeNameN404

java.math.BigDecimal attributeNameN404

attributeNameN405

java.math.BigDecimal attributeNameN405

attributeNameN406

java.math.BigDecimal attributeNameN406

attributeNameN407

java.math.BigDecimal attributeNameN407

attributeNameN408

java.math.BigDecimal attributeNameN408

attributeNameN409

java.math.BigDecimal attributeNameN409

attributeNameN410

java.math.BigDecimal attributeNameN410

attributeNameN411

java.math.BigDecimal attributeNameN411

attributeNameN412

java.math.BigDecimal attributeNameN412

attributeNameN413

java.math.BigDecimal attributeNameN413

attributeNameN414

java.math.BigDecimal attributeNameN414

attributeNameN415

java.math.BigDecimal attributeNameN415

attributeNameN416

java.math.BigDecimal attributeNameN416

attributeNameN417

java.math.BigDecimal attributeNameN417

attributeNameN418

java.math.BigDecimal attributeNameN418

attributeNameN419

java.math.BigDecimal attributeNameN419

attributeNameN420

java.math.BigDecimal attributeNameN420

attributeNameN421

java.math.BigDecimal attributeNameN421

attributeNameN422

java.math.BigDecimal attributeNameN422

attributeNameN423

java.math.BigDecimal attributeNameN423

attributeNameN424

java.math.BigDecimal attributeNameN424

attributeNameN425

java.math.BigDecimal attributeNameN425

attributeNameN426

java.math.BigDecimal attributeNameN426

attributeNameN427

java.math.BigDecimal attributeNameN427

attributeNameN428

java.math.BigDecimal attributeNameN428

attributeNameN429

java.math.BigDecimal attributeNameN429

attributeNameN430

java.math.BigDecimal attributeNameN430

attributeNameN431

java.math.BigDecimal attributeNameN431

attributeNameN432

java.math.BigDecimal attributeNameN432

attributeNameN433

java.math.BigDecimal attributeNameN433

attributeNameN434

java.math.BigDecimal attributeNameN434

attributeNameN435

java.math.BigDecimal attributeNameN435

attributeNameN436

java.math.BigDecimal attributeNameN436

attributeNameN437

java.math.BigDecimal attributeNameN437

attributeNameN438

java.math.BigDecimal attributeNameN438

attributeNameN439

java.math.BigDecimal attributeNameN439

attributeNameN440

java.math.BigDecimal attributeNameN440

attributeNameN441

java.math.BigDecimal attributeNameN441

attributeNameN442

java.math.BigDecimal attributeNameN442

attributeNameN443

java.math.BigDecimal attributeNameN443

attributeNameN444

java.math.BigDecimal attributeNameN444

attributeNameN445

java.math.BigDecimal attributeNameN445

attributeNameN446

java.math.BigDecimal attributeNameN446

attributeNameN447

java.math.BigDecimal attributeNameN447

attributeNameN448

java.math.BigDecimal attributeNameN448

attributeNameN449

java.math.BigDecimal attributeNameN449

attributeNameN450

java.math.BigDecimal attributeNameN450

attributeNameN451

java.math.BigDecimal attributeNameN451

attributeNameN452

java.math.BigDecimal attributeNameN452

attributeNameN453

java.math.BigDecimal attributeNameN453

attributeNameN454

java.math.BigDecimal attributeNameN454

attributeNameN455

java.math.BigDecimal attributeNameN455

attributeNameN456

java.math.BigDecimal attributeNameN456

attributeNameN457

java.math.BigDecimal attributeNameN457

attributeNameN458

java.math.BigDecimal attributeNameN458

attributeNameN459

java.math.BigDecimal attributeNameN459

attributeNameN460

java.math.BigDecimal attributeNameN460

attributeNameN461

java.math.BigDecimal attributeNameN461

attributeNameN462

java.math.BigDecimal attributeNameN462

attributeNameN463

java.math.BigDecimal attributeNameN463

attributeNameN464

java.math.BigDecimal attributeNameN464

attributeNameN465

java.math.BigDecimal attributeNameN465

attributeNameN466

java.math.BigDecimal attributeNameN466

attributeNameN467

java.math.BigDecimal attributeNameN467

attributeNameN468

java.math.BigDecimal attributeNameN468

attributeNameN469

java.math.BigDecimal attributeNameN469

attributeNameN470

java.math.BigDecimal attributeNameN470

attributeNameN471

java.math.BigDecimal attributeNameN471

attributeNameN472

java.math.BigDecimal attributeNameN472

attributeNameN473

java.math.BigDecimal attributeNameN473

attributeNameN474

java.math.BigDecimal attributeNameN474

attributeNameN475

java.math.BigDecimal attributeNameN475

attributeNameN476

java.math.BigDecimal attributeNameN476

attributeNameN477

java.math.BigDecimal attributeNameN477

attributeNameN478

java.math.BigDecimal attributeNameN478

attributeNameN479

java.math.BigDecimal attributeNameN479

attributeNameN480

java.math.BigDecimal attributeNameN480

attributeNameN481

java.math.BigDecimal attributeNameN481

attributeNameN482

java.math.BigDecimal attributeNameN482

attributeNameN483

java.math.BigDecimal attributeNameN483

attributeNameN484

java.math.BigDecimal attributeNameN484

attributeNameN485

java.math.BigDecimal attributeNameN485

attributeNameN486

java.math.BigDecimal attributeNameN486

attributeNameN487

java.math.BigDecimal attributeNameN487

attributeNameN488

java.math.BigDecimal attributeNameN488

attributeNameN489

java.math.BigDecimal attributeNameN489

attributeNameN490

java.math.BigDecimal attributeNameN490

attributeNameN491

java.math.BigDecimal attributeNameN491

attributeNameN492

java.math.BigDecimal attributeNameN492

attributeNameN493

java.math.BigDecimal attributeNameN493

attributeNameN494

java.math.BigDecimal attributeNameN494

attributeNameN495

java.math.BigDecimal attributeNameN495

attributeNameN496

java.math.BigDecimal attributeNameN496

attributeNameN497

java.math.BigDecimal attributeNameN497

attributeNameN498

java.math.BigDecimal attributeNameN498

attributeNameN499

java.math.BigDecimal attributeNameN499


Package org.openswing.swing.domains.java

Class org.openswing.swing.domains.java.Domain extends java.lang.Object implements Serializable

Serialized Fields

domainId

java.lang.String domainId
domain identifier


pairs

java.util.Hashtable pairs
collection of associations (code, DomainPair object)


pairsList

java.util.ArrayList pairsList
collection of associations (code, DomainPair object)

Class org.openswing.swing.domains.java.DomainPair extends java.lang.Object implements Serializable

Serialized Fields

code

java.lang.Object code
code


description

java.lang.String description
description related to the code


Package org.openswing.swing.export.client

Class org.openswing.swing.export.client.ExportDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

buttonsPanel

javax.swing.JPanel buttonsPanel

mainPanel

javax.swing.JPanel mainPanel

exportButton

javax.swing.JButton exportButton

flowLayout1

java.awt.FlowLayout flowLayout1

cancelButton

javax.swing.JButton cancelButton

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

colsLabel

javax.swing.JLabel colsLabel

scrollPane

javax.swing.JScrollPane scrollPane

cols

javax.swing.JTable cols

frame

javax.swing.JFrame frame
parent frame


grids

Grids grids
grid to export


exportTypePanel

javax.swing.JPanel exportTypePanel

flowLayout2

java.awt.FlowLayout flowLayout2

labelExportType

LabelControl labelExportType

controlExportType

javax.swing.JComboBox controlExportType
export format combo-box


Package org.openswing.swing.export.java

Class org.openswing.swing.export.java.ComponentExportOptions extends java.lang.Object implements Serializable

Serialized Fields

cellsContent

java.lang.Object[][] cellsContent
values to add to export document; may be null

Class org.openswing.swing.export.java.ExportOptions extends java.lang.Object implements Serializable

Serialized Fields

dateFormat

java.lang.String dateFormat
date format


timeFormat

java.lang.String timeFormat
time format


dateTimeFormat

java.lang.String dateTimeFormat
date+time format


exportType

java.lang.String exportType
export format


componentsExportOptions

java.util.ArrayList componentsExportOptions
list of ComponentExportOptions objects, related to descriptors for exporting data


exportToPDFAdapter

ExportToPDFCallbacks exportToPDFAdapter
export to PDF adapter


exportToRTFAdapter

ExportToRTFCallbacks exportToRTFAdapter
export to RTF adapter

Class org.openswing.swing.export.java.ExportToPDFCallbacks extends java.lang.Object implements Serializable

Class org.openswing.swing.export.java.ExportToPDFCallbacks14Impl extends ExportToPDFCallbacks implements Serializable

Class org.openswing.swing.export.java.ExportToRTFCallbacks extends java.lang.Object implements Serializable

Class org.openswing.swing.export.java.ExportToRTFCallbacks14Impl extends ExportToRTFCallbacks implements Serializable

Class org.openswing.swing.export.java.GridExportCallbacks extends java.lang.Object implements Serializable

Class org.openswing.swing.export.java.GridExportOptions extends ComponentExportOptions implements Serializable

Serialized Fields

exportColumns

java.util.ArrayList exportColumns
columns to export


exportAttrColumns

java.util.ArrayList exportAttrColumns
attribute names related to the columns to export


filteredColumns

java.util.Map filteredColumns
filtered columns; collection of pairs: attributeName, FilterWhereClause[2]


currentSortedColumns

java.util.ArrayList currentSortedColumns
sorted columns


currentSortedVersusColumns

java.util.ArrayList currentSortedVersusColumns
ordering versus of sorted columns


otherGridParams

java.util.Map otherGridParams
other grid parameters


serverMethodName

java.lang.String serverMethodName
server method name to invoke on the server


maxRows

int maxRows
maximum number of rows to export


gridDataLocator

GridDataLocator gridDataLocator
grid data locator


columnsWidth

java.util.Hashtable columnsWidth
columns width


columnsType

java.util.Hashtable columnsType
columns type


valueObjectType

java.lang.Class valueObjectType
valueObjectType v.o. type


topRows

java.util.ArrayList topRows
list of locked rows at the top of the grid


bottomRows

java.util.ArrayList bottomRows
list of locked rows at the bottom of the grid


showFilteringConditions

boolean showFilteringConditions
flag used to add a filter panel on top of the grid, in order to show filtering conditions; this pane is visibile only whether there is at least one filtering condition applied; default value: ClientSettings.SHOW_FILTERING_CONDITIONS_IN_EXPORT


title

java.lang.String title
export document title (optional)


attributeDescriptions

java.util.Hashtable attributeDescriptions
collection of pairs


callbacks

GridExportCallbacks callbacks
callbacks to invoke when exporting grid


Package org.openswing.swing.form.client

Class org.openswing.swing.form.client.Form extends javax.swing.JPanel implements Serializable

Serialized Fields

insertButton

InsertButton insertButton
insert button


copyButton

CopyButton copyButton
copy button


editButton

EditButton editButton
edit button


reloadButton

ReloadButton reloadButton
refresh/cancel button


deleteButton

DeleteButton deleteButton
delete button


saveButton

SaveButton saveButton
save button (for insert/update operations)


formController

FormController formController
form controller


model

VOModel model
data model associated to the form


mode

int mode
current form mode; default value: Consts.READONLY


linkedPanels

java.util.ArrayList linkedPanels
linked panels, related to this (optional); they will receive pull/store events fired to this


voClassName

java.lang.String voClassName
v.o. class name linked to this Form panel


firstTime

boolean firstTime
flag used to inizialize input controls in addNotify method


previousVO

ValueObject previousVO
original value object, cloned when the Form has been setted in EDIT mode


functionId

java.lang.String functionId
identifier (functionId) associated to the container


currentFormHasFocus

boolean currentFormHasFocus
flag used to define if this Form panel currently has focus (used to listen for acceleration keys events to dispatch to toolbar buttons of the form)


notFocusedBorder

javax.swing.border.Border notFocusedBorder
Form border, when it has not the focus


genericButtons

java.util.ArrayList genericButtons
generic buttons, that inherit abilitation state of the other form buttons


linkButtons

java.util.ArrayList linkButtons
LinkButton objects, that inherit abilitation state of the other form buttons


inputControlsToDisable

java.util.Hashtable inputControlsToDisable
collection of input controls attribute names to disable when the specified attribute will be setted to the specified value; pairs of type (attribute name, List of AttributeCouple objects)


buttonsToDisable

java.util.Hashtable buttonsToDisable
collection of GenericButton objects to disable when the specified attribute will be setted to the specified value; pairs of type (GenericButton object, List of GenericButtonController objects)


bindings

java.util.Hashtable bindings
collection of input controls linked to this form; couples of type: attribute name, List of InputControl objects


grid

GridControl grid
grid control linked to the current Form (optional)


navBar

NavigatorBar navBar
navigation bar linked to the current Form (optional); if this property is defined then Form data loading is automatically performed when using navigator bar; also grid selection row is updated


pkAttributes

java.util.HashSet pkAttributes
attributes that must be defined both on grid v.o. and on the Form v.o. used to select on grid the (first) row that matches pk values


reloadModelWhenClickingWithMouse

boolean reloadModelWhenClickingWithMouse
flag used to enable Form data reloading when clicking with the left mouse button onto the grid


reloadModelWhenPressingKey

boolean reloadModelWhenPressingKey
flag used to enable Form data reloading when pressing up/down keys onto the grid


createInnerVO

boolean createInnerVO
flag used to define if an inner v.o. must be automatically instantiated when a setter method is invoked; default value: true


bindedGenericButtons

java.util.Hashtable bindedGenericButtons
collection of GenericButtons binded to this Form, i.e. whose text is setted with the attribute value; pairs of type (attribute name, List of GenericButtons objects)


bindedLinkButtons

java.util.Hashtable bindedLinkButtons
collection of LinkButtons binded to this Form, i.e. whose text/tooltip/uri is setted with the attribute value; pairs of type (attribute name, List of GenericButtons objects)


shortcutsListener

FormShortcutsListener shortcutsListener
key listener used to listen for shortcut events


formFocusListener

Form.FormFocusListener formFocusListener
focus listener used to listen for Form's input controls focus events


currentValueButtons

java.util.HashMap currentValueButtons
current enabled button state, before GenericButton.setEnabled method calling


bindedButtons

java.util.HashSet bindedButtons
collection of buttons binded to grid (InsertButton, EditButton, etc)


lazyInitializedAttributes

java.util.Set lazyInitializedAttributes
collection of attributes to not manage because they are related to lazy initialized inner objects


Package org.openswing.swing.form.model.client

Class org.openswing.swing.form.model.client.ValueChangeEvent extends java.util.EventObject implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName
attribute name


oldValue

java.lang.Object oldValue
old attribute value


newValue

java.lang.Object newValue
new attribute value


Package org.openswing.swing.gantt.client

Class org.openswing.swing.gantt.client.GanttControl extends javax.swing.JPanel implements Serializable

Serialized Fields

startDate

java.util.Date startDate
starting date


endDate

java.util.Date endDate
end date


ganttRows

java.util.ArrayList ganttRows
rows viewed in this panel


splitPane

javax.swing.JSplitPane splitPane

borderLayout1

java.awt.BorderLayout borderLayout1

scrollPane1

javax.swing.JScrollPane scrollPane1

scrollPane2

javax.swing.JScrollPane scrollPane2

model1

GanttControl.Table1Model model1

model2

GanttControl.Table2Model model2

table1

javax.swing.JTable table1

table2

javax.swing.JTable table2

columnWidth

int columnWidth
column width; default value: 150 pixels


ganttDataLocator

GanttDataLocator ganttDataLocator
gantt data locator


ganttParameters

java.util.Map ganttParameters
gantt parameters


showDescription

boolean showDescription
flag used to show the description above the colored rectangle


showTime

boolean showTime
flag used to show the appointment duration above the colored rectangle


firstTime

boolean firstTime
flag used to load data the first time


enableDelete

boolean enableDelete
enable deleting of appointments; default value: true


enableInsert

boolean enableInsert
enable inserting of appointments; default value: true


enableEdit

boolean enableEdit
enable editing of appointments; default value: true


appointmentChangeListeners

java.util.ArrayList appointmentChangeListeners
list of AppointmentChangeListener objects


preferredSize

java.util.Hashtable preferredSize
column sizes for the grid (legend area); colleciton of pairs: column index,width


visibility

java.util.ArrayList visibility
collection of columns not visible in the grid (legend area)


autoLoadData

boolean autoLoadData
flag used to specify if data loading will be automatically performed when the gantt is set to visible; default value: "true".

Class org.openswing.swing.gantt.client.GanttControl.GanttColumnEditor extends javax.swing.AbstractCellEditor implements Serializable

Serialized Fields

label

GanttControl.GanttCell label

table

javax.swing.JTable table

value

java.util.ArrayList value
list of Appointment objects stored in the editing cell


isLeftMouseButtonPressed

boolean isLeftMouseButtonPressed
flag used to store when the mouse is left clicked


lastX

long lastX
x pixel stored when user press the mouse the first time


lastCellIndex

int lastCellIndex
column index related to the edited cell


isSelected

boolean isSelected
flag used to store editing cell selection


cal

java.util.Calendar cal
temporary variable


lastDescr

java.lang.String lastDescr
last description


lastRow

int lastRow
last row


appointment

Appointment appointment
last Appointment processed (viewed)


Package org.openswing.swing.gantt.java

Class org.openswing.swing.gantt.java.AppointmentVO extends ValueObjectImpl implements Serializable

Serialized Fields

startDate

java.sql.Timestamp startDate

endDate

java.sql.Timestamp endDate

description

java.lang.String description

foregroundColor

java.awt.Color foregroundColor

backgroundColor

java.awt.Color backgroundColor

duration

java.math.BigDecimal duration

enableDelete

boolean enableDelete

enableEdit

boolean enableEdit

Class org.openswing.swing.gantt.java.GanttRowVO extends ValueObjectImpl implements Serializable

Serialized Fields

sundayWorkingHours

GanttWorkingHours sundayWorkingHours

mondayWorkingHours

GanttWorkingHours mondayWorkingHours

tuesdayWorkingHours

GanttWorkingHours tuesdayWorkingHours

wednesdayWorkingHours

GanttWorkingHours wednesdayWorkingHours

thursdayWorkingHours

GanttWorkingHours thursdayWorkingHours

fridayWorkingHours

GanttWorkingHours fridayWorkingHours

saturdayWorkingHours

GanttWorkingHours saturdayWorkingHours

appointments

java.util.HashSet appointments
list of Appointment objects


legend

java.lang.Object[] legend
values to show on the grid on the left


appointmentClass

java.lang.Class appointmentClass
Appointment object class, used to create it by reflection

Class org.openswing.swing.gantt.java.GanttWorkingHoursVO extends ValueObjectImpl implements Serializable

Serialized Fields

morningStartHour

java.sql.Timestamp morningStartHour

morningEndHour

java.sql.Timestamp morningEndHour

afternoonStartHour

java.sql.Timestamp afternoonStartHour

afternoonEndHour

java.sql.Timestamp afternoonEndHour


Package org.openswing.swing.internationalization.java

Class org.openswing.swing.internationalization.java.Language extends java.lang.Object implements Serializable

Serialized Fields

languageId

java.lang.String languageId
language identifier


description

java.lang.String description
language description

Class org.openswing.swing.internationalization.java.Resources extends java.lang.Object implements Serializable

Serialized Fields

dictionary

java.util.Properties dictionary
dictionary containing the translations


currencySymbol

java.lang.String currencySymbol
currency symbol


decimalSymbol

char decimalSymbol
decimal symbol


groupingSymbol

char groupingSymbol
grouping symbol


timeFormat

java.lang.String timeFormat
time format; possible values: HH_MM, H_MM_AAA, HH_MM_SS, H_MM_SS_AAA, HH_MM_SS, H_MM_SS_AAA


languageId

java.lang.String languageId
language identifier


dateFormatSeparator

char dateFormatSeparator
date format separator; for example: '-' or '/'


showCenturyInDateFormat

boolean showCenturyInDateFormat
flag used to show century in the date format


dateFormat

int dateFormat
date format; possible values: YMD, DMY, MDY, YDM


showResourceNotFoundWarning

boolean showResourceNotFoundWarning
warn when no resource key not found


Package org.openswing.swing.lookup.client

Class org.openswing.swing.lookup.client.CustomFilterPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

grid

Grids grid
grid onto apply filter


autoLoadData

boolean autoLoadData
define if grid has to automatically load data when opening lookup frame; default value: false

Class org.openswing.swing.lookup.client.RestoreFocusOnInvalidCodeException extends java.lang.Exception implements Serializable


Package org.openswing.swing.mdi.client

Class org.openswing.swing.mdi.client.AboutDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

tabbedPane

javax.swing.JTabbedPane tabbedPane

imageButton

javax.swing.JButton imageButton

infoPanel

javax.swing.JPanel infoPanel

borderLayout2

java.awt.BorderLayout borderLayout2

scrollPane

javax.swing.JScrollPane scrollPane

gcPanel

javax.swing.JPanel gcPanel

gcButton

javax.swing.JButton gcButton

text

javax.swing.JEditorPane text

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

memLabel

javax.swing.JLabel memLabel

Class org.openswing.swing.mdi.client.ChangeLanguageDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel

borderLayout2

java.awt.BorderLayout borderLayout2

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

scrollPane

javax.swing.JScrollPane scrollPane

changeButton

javax.swing.JButton changeButton

cancelButton

javax.swing.JButton cancelButton

langList

javax.swing.JList langList

frame

MDIFrame frame

controller

MDIController controller

Class org.openswing.swing.mdi.client.Clock extends javax.swing.JTextField implements Serializable

Serialized Fields

timer

javax.swing.Timer timer

dateTimeFormat

java.text.SimpleDateFormat dateTimeFormat

Class org.openswing.swing.mdi.client.DefaultToolBar extends ToolBar implements Serializable

Class org.openswing.swing.mdi.client.DesktopPane extends javax.swing.JDesktopPane implements Serializable

Serialized Fields

background

java.awt.Image background
background image


backgroundFileName

java.lang.String backgroundFileName
file related to custom background image


modal

boolean modal
flag used to manage modal internal frames


modalPane

javax.swing.JPanel modalPane
modal panel


layeringComp

java.awt.Component layeringComp
layering component

Class org.openswing.swing.mdi.client.GenericStatusPanel extends javax.swing.JTextField implements Serializable

Class org.openswing.swing.mdi.client.InternalFrame extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

frameList

java.util.ArrayList frameList
children windows (optional); they will be automatically closed when this window is closed


parentFrame

InternalFrame parentFrame
parent frame (optional)


askBeforeClose

boolean askBeforeClose
used when this window will be closed: if this flag is set to true then a warning dialog will be showed before close the window to ask if it must be close; default value: ClientSettings.ASK_BEFORE_CLOSE


lastBorder

javax.swing.border.Border lastBorder
last border of internal frame, before hiding title bar


hideTitleBar

boolean hideTitleBar
flag used to hide/show title bar; default value: false i.e. title bar is visible


lastNorthPane

javax.swing.JComponent lastNorthPane
last component added to the north of the internal frame, before hiding title bar


modal

boolean modal
internal frame modal state; default value: false i.e. internal frame is not modal


owner

javax.swing.JInternalFrame owner
internal frame owner


uniqueInstance

boolean uniqueInstance
used to define whether this window can be opened more times or only one instance can be created per time; default value: false, i.e. any number of instances of this window can be created

Class org.openswing.swing.mdi.client.MDIFrame extends javax.swing.JFrame implements Serializable

Serialized Fields

contentPane

javax.swing.JPanel contentPane

menuBar

javax.swing.JMenuBar menuBar

menuFile

javax.swing.JMenu menuFile

menuFileChangeUser

javax.swing.JMenuItem menuFileChangeUser

menuFileChangeLanguage

javax.swing.JMenuItem menuFileChangeLanguage

menuFileExit

javax.swing.JMenuItem menuFileExit

menuHelp

javax.swing.JMenu menuHelp

menuHelpAbout

javax.swing.JMenuItem menuHelpAbout

borderLayout1

java.awt.BorderLayout borderLayout1

scrollPane

javax.swing.JScrollPane scrollPane

splitPane

javax.swing.JSplitPane splitPane

splitPaneUI

javax.swing.plaf.basic.BasicSplitPaneUI splitPaneUI

bottomPanel

javax.swing.JPanel bottomPanel
panel at the bottom, containing opened window icons (optional) and status panel


gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

lastTreeMenuWidth

int lastTreeMenuWidth
last tree menu width


toolbar

javax.swing.JToolBar toolbar
toolbar (optional); it will be showed only if there is at least one button added to it (through "addToolbarButton" method)


toolbarAdded

boolean toolbarAdded
flag used to check if toolbar has been added to main panel


functionsHooks

java.util.Hashtable functionsHooks
collection of pairs


functionsMenuHooks

java.util.Hashtable functionsMenuHooks
collection of pairs


uniqueInstances

java.util.HashSet uniqueInstances
unique instances of internal frames, expressed as Class elements

Class org.openswing.swing.mdi.client.StatusBar extends javax.swing.JPanel implements Serializable

Serialized Fields

statusText

javax.swing.JTextField statusText

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

progressBar

javax.swing.JProgressBar progressBar

pos

int pos
next position for a new component to add


delay

int delay
delay in progress bar (in milliseconds)


busy

boolean busy
flag used to start/stop the progress bar


progressBarColor

java.awt.Color progressBarColor
progress bar color

Class org.openswing.swing.mdi.client.SwitchDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

filterPanel

javax.swing.JPanel filterPanel

buttonsPane

javax.swing.JPanel buttonsPane

flowLayout1

java.awt.FlowLayout flowLayout1

scrollPane

javax.swing.JScrollPane scrollPane

list

javax.swing.JList list

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

labelFilter

LabelControl labelFilter

controlFilter

TextControl controlFilter

labelTitle

LabelControl labelTitle

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

internalFrames

WindowsList internalFrames
collection of pairs: JInternalFrame, menu item


frames

java.util.ArrayList frames
list of frames

Class org.openswing.swing.mdi.client.ToolBar extends javax.swing.JPanel implements Serializable

Serialized Fields

insertButton

InsertButton insertButton

editButton

EditButton editButton

copyButton

CopyButton copyButton

reloadButton

ReloadButton reloadButton

saveButton

SaveButton saveButton

deleteButton

DeleteButton deleteButton

importButton

ImportButton importButton

exportButton

ExportButton exportButton

filterButton

FilterButton filterButton

navigatorBar

NavigatorBar navigatorBar

Class org.openswing.swing.mdi.client.Tree extends javax.swing.JTree implements Serializable

Serialized Fields

backImage

java.awt.Image backImage
background image

Class org.openswing.swing.mdi.client.TreeMenu extends javax.swing.JPanel implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

menuTree

Tree menuTree

treeScrollPane

javax.swing.JScrollPane treeScrollPane

titlePanel

javax.swing.JPanel titlePanel

titleLabel

javax.swing.JLabel titleLabel

lockPanel

ImagePanel lockPanel

lockImage

java.awt.Image lockImage

unlockImage

java.awt.Image unlockImage

findImage

java.awt.Image findImage

locked

boolean locked

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

findLabel

javax.swing.JLabel findLabel

findTF

javax.swing.JTextField findTF

currentPath

javax.swing.tree.TreePath currentPath
tree nodes path used to find a function

Class org.openswing.swing.mdi.client.TreeNodeRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable

Serialized Fields

defaultFunctionIcon

javax.swing.ImageIcon defaultFunctionIcon
default icon for a function node


defaultFolderIcon

javax.swing.ImageIcon defaultFolderIcon
default icon for a folder node


tree

javax.swing.JTree tree
functions tree

Class org.openswing.swing.mdi.client.WindowMenu extends javax.swing.JMenu implements Serializable

Serialized Fields

menuWindowCloseAll

javax.swing.JMenuItem menuWindowCloseAll
menu item related to closing all opened windows


internalFrames

WindowsList internalFrames
collection of pairs: JInternalFrame, menu item


menuWindowSwitch

javax.swing.JMenuItem menuWindowSwitch
menu item related to switch between opened windows


menuWindowTileH

javax.swing.JMenuItem menuWindowTileH
menu item related to tile horizontally


menuWindowTileV

javax.swing.JMenuItem menuWindowTileV
menu item related to tile vertically


menuWindowCascade

javax.swing.JMenuItem menuWindowCascade
menu item related to cascade windows


menuWindowMinimize

javax.swing.JMenuItem menuWindowMinimize
menu item related to window minimization


menuWindowMinimizeAll

javax.swing.JMenuItem menuWindowMinimizeAll
menu item related to all windows minimization


menuWindowClose

javax.swing.JMenuItem menuWindowClose
menu item related to close window


countMenuComponent

int countMenuComponent
count Menu Component start with 1 because the separator

Class org.openswing.swing.mdi.client.WindowsList extends java.util.Hashtable implements Serializable

Serialized Fields

list

java.util.ArrayList list
list of JInternalFrame added in chronological order

Class org.openswing.swing.mdi.client.WinIconsPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

flowLayout1

java.awt.FlowLayout flowLayout1

buttons

java.util.Hashtable buttons
collection of button, linked frame


buttonsNr

java.util.Hashtable buttonsNr
collection of frame title, number of frames with that title


x

int x
current horizontal position when locating a new toggle button


menu

javax.swing.JPopupMenu menu
used to show a popup menu containing a "close frame" menu item


closeMenu

javax.swing.JMenuItem closeMenu
menu item inserted into the popup menu


iconMenu

javax.swing.JMenuItem iconMenu
menu item inserted into the popup menu


frameToClose

InternalFrame frameToClose
internal frame to close


Package org.openswing.swing.mdi.java

Class org.openswing.swing.mdi.java.ApplicationFunction extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

Serialized Fields

functionId

java.lang.String functionId
function identifier


iconName

java.lang.String iconName
image name


methodName

java.lang.String methodName
method name in ClientFacade to execute


isFolder

boolean isFolder
this node is a folder


description

java.lang.String description
node description


isSeparator

boolean isSeparator
this node is a separator


tooltipText

java.lang.String tooltipText
tooltip text associated to folder or function


shortCut

java.lang.Character shortCut
shortcut to use in order to select this function in the menu bar; if not setted, the shortcut is automatically defined by MDIFrame


accelerator

javax.swing.KeyStroke accelerator
accelerator to use in order to select this function in the menu bar; example for CTRL+X: KeyStroke.getKeyStroke('X',Event.CTRL_MASK)


Package org.openswing.swing.message.receive.java

Class org.openswing.swing.message.receive.java.BytesResponse extends Response implements Serializable

Serialized Fields

bytes

byte[] bytes
bytes


fileName

java.lang.String fileName
name of file (optional)

Class org.openswing.swing.message.receive.java.ErrorResponse extends Response implements Serializable

Serialized Fields

errorMessage

java.lang.String errorMessage
error message

Class org.openswing.swing.message.receive.java.Response extends java.lang.Object implements Serializable

Serialized Fields

sessionId

java.lang.String sessionId
session id of the current client application

Class org.openswing.swing.message.receive.java.TableModelResponse extends Response implements Serializable

Serialized Fields

columnNames

java.util.Vector columnNames
column identifiers


rows

java.util.Vector rows
list of rows

Class org.openswing.swing.message.receive.java.TableResponse extends Response implements Serializable

Serialized Fields

rows

java.util.ArrayList rows
list of objects

Class org.openswing.swing.message.receive.java.TextResponse extends Response implements Serializable

Serialized Fields

message

java.lang.String message
text message

Class org.openswing.swing.message.receive.java.UserAuthorizationsResponse extends Response implements Serializable

Serialized Fields

ba

ButtonsAuthorizations ba

model

javax.swing.tree.DefaultTreeModel model

Class org.openswing.swing.message.receive.java.ValueObjectException extends java.lang.Exception implements Serializable

Class org.openswing.swing.message.receive.java.ValueObjectImpl extends java.lang.Object implements Serializable

Class org.openswing.swing.message.receive.java.VOListResponse extends Response implements Serializable

Serialized Fields

rows

java.util.List rows
list of value objects


moreRows

boolean moreRows
there are other rows in result set not yet loaded


resultSetLength

int resultSetLength
result set length


totalAmountOfRows

int totalAmountOfRows
total amount of rows; usually not filled

Class org.openswing.swing.message.receive.java.VOResponse extends Response implements Serializable

Serialized Fields

vo

java.lang.Object vo
object


Package org.openswing.swing.message.send.java

Class org.openswing.swing.message.send.java.Command extends java.lang.Object implements Serializable

Serialized Fields

methodName

java.lang.String methodName
server method name to invoke


inputParam

java.lang.Object inputParam
generic parameter object to pass to the server side method


sessionId

java.lang.String sessionId
client identifier, used on the server side to identify the client

Class org.openswing.swing.message.send.java.FilterWhereClause extends java.lang.Object implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName
attribute name


operator

java.lang.String operator
operator; possible values: =, is null, is not null, <, >, <=, >=


value

java.lang.Object value
attribute value

Class org.openswing.swing.message.send.java.GridParams extends java.lang.Object implements Serializable

Serialized Fields

filteredColumns

java.util.Map filteredColumns
filtered columns; collection of pairs: attributeName, FilterWhereClause[2]


currentSortedColumns

java.util.ArrayList currentSortedColumns
sorted columns


currentSortedVersusColumns

java.util.ArrayList currentSortedVersusColumns
ordering versus of sorted columns


otherGridParams

java.util.Map otherGridParams
other grid parameters


action

int action
fetching versus: PREVIOUS_BLOCK_ACTION, NEXT_BLOCK_ACTION or LAST_BLOCK_ACTION


startPos

int startPos
start position of data fetching in result set

Class org.openswing.swing.message.send.java.LookupValidationParams extends java.lang.Object implements Serializable

Serialized Fields

code

java.lang.String code
code to validate


lookupValidationParameters

java.util.Map lookupValidationParameters
parameters used to validate code (optionals)


Package org.openswing.swing.miscellaneous.client

Class org.openswing.swing.miscellaneous.client.AlertWindow extends IconifableWindow implements Serializable

Serialized Fields

timeout

long timeout
wait time before automatically closing window; 0 means do not close window; default value: 0


fadeOutTime

long fadeOutTime
fade out time in milliseconds; 0 means no fade out effect; default value: 1000


fadeInTime

long fadeInTime
fade in time in milliseconds; minimum value: 50; 0 means no fade in effect; minimum value: 50; default value: 1000


body

MultiLineLabelControl body
multi-line text to show inside this panel


imageName

java.lang.String imageName
image name to show at the left of the multi-line text (optional)


reduceToIconOnTimeout

boolean reduceToIconOnTimeout
define if the window must be closed (false) or only reduce to icon (true), when the timeout has been rised; default value: false


defaultComponentsPanel

javax.swing.JPanel defaultComponentsPanel
panel that contains the default graphics components (image and multi-line text)


imagePanel

ImagePanel imagePanel
icon to show at the left of the multi-line text (optional)

Class org.openswing.swing.miscellaneous.client.IconifableWindow extends javax.swing.JPanel implements Serializable

Serialized Fields

window

javax.swing.JWindow window
window


title

LabelControl title
title to show inside this panel


anchorComponent

javax.swing.JComponent anchorComponent
component to anchor to


constraint

int constraint
anchor type: TOP or BOTTOM or INSIDE_BOTTOM or INSIDE_TOP


showCloseButton

boolean showCloseButton
define if a close button must be showed (false = window will be closed by simply click the mouse inside it); default value: false


showReduceToIconButton

boolean showReduceToIconButton
define if a reduce to icon button must be showed (true means that the iconified window will be enlarged by clicking on it); default value: false


topPanel

javax.swing.JPanel topPanel
panel that contains the title and "close" and "reduce to icon" buttons


closeButton

ImagePanel closeButton
close window button


reduceToIconButton

ImagePanel reduceToIconButton
reduce window to icon button


restoreButton

ImagePanel restoreButton
restore window to original dimension button


lastWindowDimension

java.awt.Dimension lastWindowDimension
last window dimension (before reducing it to icon)


iconHeight

int iconHeight
window height, when it is iconified


iconifableWindowListeners

java.util.ArrayList iconifableWindowListeners
listeners of type IconifableWindowListener


titleImageName

java.lang.String titleImageName
title image name (optional), to show at the left of the title


titleImage

ImagePanel titleImage
title image


allowsCloseWindow

boolean allowsCloseWindow
flag used to define if the window can be closed (when the close button is hidden and user has clicked with the mouse inside it); default value: false

Class org.openswing.swing.miscellaneous.client.IconifableWindowsContainer extends javax.swing.JPanel implements Serializable

Serialized Fields

autoExpandWindow

boolean autoExpandWindow
flag used to auto expand an IconifableWindow


windows

java.util.ArrayList windows
list of IconifableWindow objects added to this container


firstTime

boolean firstTime

Class org.openswing.swing.miscellaneous.client.LicencePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

topPanel

javax.swing.JPanel topPanel

mainPanel

javax.swing.JPanel mainPanel

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

labelTitle

javax.swing.JLabel labelTitle

labelSubTitle

javax.swing.JLabel labelSubTitle

imagePanel

ImagePanel imagePanel

gridBagLayout2

java.awt.GridBagLayout gridBagLayout2

scrollPane

javax.swing.JScrollPane scrollPane

controlLicence

javax.swing.JEditorPane controlLicence

radioButtonOk

javax.swing.JRadioButton radioButtonOk

radioButtonNo

javax.swing.JRadioButton radioButtonNo

buttonsPanel

javax.swing.JPanel buttonsPanel

buttonCancel

javax.swing.JButton buttonCancel

buttonOk

javax.swing.JButton buttonOk

buttonGroup1

javax.swing.ButtonGroup buttonGroup1

buttonBack

javax.swing.JButton buttonBack

showBackButton

boolean showBackButton
flag used to show/hide the "back" button


showOkButton

boolean showOkButton
flag used to show/hide the "ok" button


showCancelButton

boolean showCancelButton
flag used to show/hide the "cancel" button


gridBagLayout3

java.awt.GridBagLayout gridBagLayout3

voidPanel

javax.swing.JPanel voidPanel

imageName

java.lang.String imageName
image name

Class org.openswing.swing.miscellaneous.client.ProgressBar extends javax.swing.JPanel implements Serializable

Serialized Fields

minValue

double minValue
minimum value allowed in the progress bar; default value = 0


maxValue

double maxValue
maximum value allowed in the progress bar; default value: 100


currentValue

double currentValue
current value to set


currentColor

java.awt.Color currentColor
current used color; default value: ClientSettings.GRID_SELECTION_BACKGROUND


coloredBands

java.util.ArrayList coloredBands
list of bands included in [minValue,maxValue] interval, having a specific color


showAllBands

boolean showAllBands
flag used to determine how to color the progress bar: true to paint the bar with many colors, each band with its color, false to paint the bar with ony one color: the color related to the last matched band

Class org.openswing.swing.miscellaneous.client.ProgressDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

progressPanel

ProgressPanel progressPanel

Class org.openswing.swing.miscellaneous.client.ProgressPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

titlePanel

javax.swing.JPanel titlePanel

progressPanel

javax.swing.JPanel progressPanel

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

imagePanel

ImagePanel imagePanel

labelMainTitle

javax.swing.JLabel labelMainTitle

scrollPane

javax.swing.JScrollPane scrollPane

controlMainMessage

javax.swing.JTextArea controlMainMessage

gridBagLayout2

java.awt.GridBagLayout gridBagLayout2

labelProgress

javax.swing.JLabel labelProgress

progressBar

ProgressBar progressBar

buttonCancel

javax.swing.JButton buttonCancel

messages

java.util.ArrayList messages
list of JLabels


currentRow

int currentRow
number of labeld added above the progress bar

Class org.openswing.swing.miscellaneous.client.TestFinestre extends javax.swing.JFrame implements Serializable

Class org.openswing.swing.miscellaneous.client.TestOutlook extends javax.swing.JFrame implements Serializable

Class org.openswing.swing.miscellaneous.client.TipFrame extends javax.swing.JFrame implements Serializable

Serialized Fields

tipPanel

TipPanel tipPanel
tip panel to show

Class org.openswing.swing.miscellaneous.client.TipGenericInternalFrame extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

tipPanel

TipPanel tipPanel
tip panel to show

Class org.openswing.swing.miscellaneous.client.TipInternalFrame extends InternalFrame implements Serializable

Serialized Fields

tipPanel

TipPanel tipPanel
tip panel to show


Package org.openswing.swing.miscellaneous.util.client

Class org.openswing.swing.miscellaneous.util.client.TipPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

imagePanel

ImagePanel imagePanel

buttonsPanel

javax.swing.JPanel buttonsPanel

mainPanel

javax.swing.JPanel mainPanel

gridBagLayout2

java.awt.GridBagLayout gridBagLayout2

labelTitle

javax.swing.JLabel labelTitle

scrollPane

javax.swing.JScrollPane scrollPane

tipPane

javax.swing.JEditorPane tipPane

controlShow

CheckBoxControl controlShow

buttonList

javax.swing.JButton buttonList

buttonPrev

javax.swing.JButton buttonPrev

buttonNext

javax.swing.JButton buttonNext

buttonClose

javax.swing.JButton buttonClose

tipPanelContainer

TipPanelContainer tipPanelContainer
TipPanel container


imageName

java.lang.String imageName
tip image


showCheck

boolean showCheck
flag used to define if the checkbox 'show 'tip of the day' after launching' must be showed


tipPanelContent

TipPanelContent tipPanelContent
TipPanel content manager


index

int index
current index of the showed tip


Package org.openswing.swing.permissions.client

Class org.openswing.swing.permissions.client.LoginDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel

controlsPanel

javax.swing.JPanel controlsPanel

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

gridBagLayout3

java.awt.GridBagLayout gridBagLayout3

usernameLabel

javax.swing.JLabel usernameLabel

passwdLabel

javax.swing.JLabel passwdLabel

usernameTF

javax.swing.JTextField usernameTF

passwdTF

javax.swing.JPasswordField passwdTF

gridBagLayout2

java.awt.GridBagLayout gridBagLayout2

buttonsPanel

javax.swing.JPanel buttonsPanel

exitButton

javax.swing.JButton exitButton

loginButton

javax.swing.JButton loginButton

loginController

LoginController loginController
login controller


attempts

int attempts
number of faild login attempts


changeLogin

boolean changeLogin
flag used to indicate that the login dialog is opened inside the application: if user will click on "Exit" button then the application will not be closed


parentFrame

javax.swing.JFrame parentFrame
parent frame; may be null


fromOtherMethod

boolean fromOtherMethod
flag used in windowClosed method


title

java.lang.String title
text to show as title


loginButtonText

java.lang.String loginButtonText
text to show in login button


exitButtonText

java.lang.String exitButtonText
text to show in cancel button


loginButtonMnemonic

char loginButtonMnemonic
text to show in login button


exitButtonMnemonic

char exitButtonMnemonic
text to show in exit button


storeAccountCheckBox

javax.swing.JCheckBox storeAccountCheckBox
check box used to store account


storeAccount

java.lang.String storeAccount
store account text label


appId

java.lang.String appId
appId used to identify the application: for each distinct appId it will be stored a specific account


cipher

CryptUtils cipher
optional cipher that can be used to encode and decode the password field; if this argument is null then no password encoding/decoding task is performed


languagesComboBox

ComboBoxControl languagesComboBox
combo box for language selection


supportedLanguageIds

java.util.Properties supportedLanguageIds
supported languages, i.e. collection of pairs ; may be null


currentLanguageIdentifier

java.lang.String currentLanguageIdentifier
current language identifier; may be null


usernameTextLabel

java.lang.String usernameTextLabel
text to show in username label


passwordTextLabel

java.lang.String passwordTextLabel
text to show in password label


size

java.awt.Dimension size
window size; if not specified, the size is automatically setted by this class


Package org.openswing.swing.permissions.java

Class org.openswing.swing.permissions.java.ButtonsAuthorizations extends java.lang.Object implements Serializable

Serialized Fields

authorizations

java.util.Hashtable authorizations
collection of pairs: functionId, ButtonAuthorization object


genericButtonsAuthorizations

java.util.Hashtable genericButtonsAuthorizations
collection of pairs: functionId, GenericButtonAuthorization object


Package org.openswing.swing.pivottable.aggregators.java

Class org.openswing.swing.pivottable.aggregators.java.GenericAggregator extends java.lang.Object implements Serializable

Class org.openswing.swing.pivottable.aggregators.java.HalfYearAggregator extends GenericAggregator implements Serializable

Serialized Fields

cal

java.util.Calendar cal

Class org.openswing.swing.pivottable.aggregators.java.LetterAggregator extends GenericAggregator implements Serializable

Serialized Fields

fromChars

char[] fromChars

toChars

char[] toChars

groupValues

java.lang.String[] groupValues

Class org.openswing.swing.pivottable.aggregators.java.QuarterAggregator extends GenericAggregator implements Serializable

Serialized Fields

cal

java.util.Calendar cal

Class org.openswing.swing.pivottable.aggregators.java.YearAggregator extends GenericAggregator implements Serializable

Serialized Fields

cal

java.util.Calendar cal


Package org.openswing.swing.pivottable.cellspantable.client

Class org.openswing.swing.pivottable.cellspantable.client.CellSpanTable extends javax.swing.JTable implements Serializable

Serialized Fields

rowSize

int rowSize

columnSize

int columnSize

span

int[][][] span


Package org.openswing.swing.pivottable.client

Class org.openswing.swing.pivottable.client.DraggableButton extends javax.swing.JPanel implements Serializable

Serialized Fields

dragSource

java.awt.dnd.DragSource dragSource
drag source


panelId

java.lang.String panelId
panel identifier, used for DnD


dropTarget

java.awt.dnd.DropTarget dropTarget
drop gestures


dragCursor

java.awt.Cursor dragCursor
cursor to show on dragging


pos

int pos
component position


draggableButtonListeners

java.util.ArrayList draggableButtonListeners
list of DraggableButtonListener elements

Class org.openswing.swing.pivottable.client.FieldVO extends ValueObjectImpl implements Serializable

Serialized Fields

description

java.lang.String description

selected

boolean selected

Class org.openswing.swing.pivottable.client.FilterDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel

borderLayout1

java.awt.BorderLayout borderLayout1

buttonsPanel

javax.swing.JPanel buttonsPanel

tabbedPane

javax.swing.JTabbedPane tabbedPane

flowLayout1

java.awt.FlowLayout flowLayout1

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

dataPanel

javax.swing.JPanel dataPanel

rowsPanel

javax.swing.JPanel rowsPanel

colsPanel

javax.swing.JPanel colsPanel

filterPanel

javax.swing.JPanel filterPanel

dataGrid

FilterGridPanel dataGrid

colsGrid

FilterGridPanel colsGrid

rowsGrid

FilterGridPanel rowsGrid

borderLayout2

java.awt.BorderLayout borderLayout2

borderLayout3

java.awt.BorderLayout borderLayout3

borderLayout4

java.awt.BorderLayout borderLayout4

table

PivotTable table
Pivot Table


pars

PivotTableParameters pars
Pivot Table parameters, used to create PivotTable content

Class org.openswing.swing.pivottable.client.FilterGridPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

grid

GridControl grid

borderLayout2

java.awt.BorderLayout borderLayout2

colName

TextColumn colName

colChecked

CheckBoxColumn colChecked

allFields

java.util.HashMap allFields

reverseAllFields

java.util.HashMap reverseAllFields

gridId

java.lang.String gridId

selectedFields

java.util.ArrayList selectedFields

selRow

int selRow

Class org.openswing.swing.pivottable.client.PivotTable extends javax.swing.JPanel implements Serializable

Serialized Fields

firstTime

boolean firstTime
flag used in addNotify method


pivotTableChanged

boolean pivotTableChanged
flag used to indicate that Pivot Table is not yet updated with current row/column fields


gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

dataPanel

javax.swing.JPanel dataPanel
panel that hosts data fields


rowsPanel

javax.swing.JPanel rowsPanel
panel that hosts row fields


columnsPanel

javax.swing.JPanel columnsPanel
panel that hosts column fields


dataTable

javax.swing.JTable dataTable
data table


rowsTable

CellSpanTable rowsTable
rows table


colsTable

CellSpanTable colsTable
columns table


dataScrollPane

javax.swing.JScrollPane dataScrollPane
scroll pane used by data table


rowsScrollPane

javax.swing.JScrollPane rowsScrollPane
scroll pane used by rows table


colsScrollPane

javax.swing.JScrollPane colsScrollPane
scroll pane used by cols table


flowLayout1

java.awt.FlowLayout flowLayout1

flowLayout3

java.awt.FlowLayout flowLayout3

currentExpandableRowFields

java.util.HashMap currentExpandableRowFields
collection of pairs


currentExpandableColFields

java.util.HashMap currentExpandableColFields
collection of pairs


controller

PivotTableController controller
controller used by PivotTable to retrieve the PivotTableModel


pivotTableModel

PivotTableModel pivotTableModel
model of Pivot Table


pars

PivotTableParameters pars
Pivot Table parameters, used to create PivotTable content


sdf

java.text.SimpleDateFormat sdf
date formatter


backPanel

java.awt.Color backPanel
color for fields panel


exportButton

ExportButton exportButton
export button (optional)


reloadButton

ReloadButton reloadButton
reload button (optional)


filterButton

FilterButton filterButton
filter button (optional)


bindedButtons

java.util.HashSet bindedButtons
binded buttons


functionId

java.lang.String functionId
identifier (functionId) associated to the container


currentValueButtons

java.util.HashMap currentValueButtons
current enabled button state, before GenericButton.setEnabled method calling


allDataFields

java.util.ArrayList allDataFields
data fields decleared for this pivot table; they are not applied, but are only showed in filter dialog


allRowFields

java.util.ArrayList allRowFields
row fields decleared for this pivot table; they are not applied, but are only showed in filter dialog


allColumnFields

java.util.ArrayList allColumnFields
column fields decleared for this pivot table; they are not applied, but are only showed in filter dialog


autoCompile

boolean autoCompile
flag used to autocompile Pivot table when showing it; default value: true


dataFieldRenderer

DataFieldRenderer dataFieldRenderer
(optional) renderer used to set background/foreground color for each data field cell and related font


Package org.openswing.swing.pivottable.functions.java

Class org.openswing.swing.pivottable.functions.java.AverageFunction extends GenericFunction implements Serializable

Serialized Fields

sum

java.lang.Double sum

Class org.openswing.swing.pivottable.functions.java.GenericFunction extends java.lang.Object implements Serializable

Serialized Fields

count

java.lang.Double count

Class org.openswing.swing.pivottable.functions.java.MaxFunction extends GenericFunction implements Serializable

Serialized Fields

maxValue

java.lang.Double maxValue

Class org.openswing.swing.pivottable.functions.java.MinFunction extends GenericFunction implements Serializable

Serialized Fields

minValue

java.lang.Double minValue

Class org.openswing.swing.pivottable.functions.java.SumFunction extends GenericFunction implements Serializable

Serialized Fields

sum

java.lang.Double sum


Package org.openswing.swing.pivottable.java

Class org.openswing.swing.pivottable.java.ColGenericNode extends java.lang.Object implements Serializable

Serialized Fields

vpath

GenericNodeKey vpath
node identifier, i.e. the nodes path


gf

GenericFunction[] gf
data field values


childrenNodes

java.util.ArrayList childrenNodes
list of GenericNode objects


nodeExpanded

boolean nodeExpanded
flag used to define if current node is expanded


value

java.lang.Object value
node value


rootNode

boolean rootNode
this is a root node


level

int level
depth level

Class org.openswing.swing.pivottable.java.ColumnField extends java.lang.Object implements Serializable

Serialized Fields

columnName

java.lang.String columnName
column name in original TableModel, that identify this field


aggregator

GenericAggregator aggregator
field aggregator, that groups values; default value: GenericAggregator


description

java.lang.String description
column description

Class org.openswing.swing.pivottable.java.DataField extends java.lang.Object implements Serializable

Serialized Fields

columnName

java.lang.String columnName
column name in original TableModel, that identify this field


width

int width
column width, expressed in pixels


function

GenericFunction function
function to apply to this field; default value: SumFunction


description

java.lang.String description
column description


formatter

java.text.NumberFormat formatter
numeric formatter

Class org.openswing.swing.pivottable.java.GenericNodeKey extends java.lang.Object implements Serializable

Serialized Fields

path

java.lang.Object[] path

hashCode

int hashCode

Class org.openswing.swing.pivottable.java.GlobalColGenericNode extends java.lang.Object implements Serializable

Serialized Fields

vpath

GenericNodeKey vpath
node identifier, i.e. the nodes path


childrenNodes

java.util.ArrayList childrenNodes
list of GenericNode objects


nodeExpanded

boolean nodeExpanded
flag used to define if current node is expanded


value

java.lang.Object value
node value


rootNode

boolean rootNode
this is a root node


level

int level
depth level

Class org.openswing.swing.pivottable.java.InputFilter extends java.lang.Object implements Serializable

Serialized Fields

operators

java.util.HashMap operators
collection of pairs


filterValues

java.util.HashMap filterValues
collection of pairs

Class org.openswing.swing.pivottable.java.PivotTableModel extends java.lang.Object implements Serializable

Serialized Fields

hroot

RowGenericNode hroot
root node, related to row fields


vroot

GlobalColGenericNode vroot
root node, related to column fields

Class org.openswing.swing.pivottable.java.PivotTableParameters extends java.lang.Object implements Serializable

Serialized Fields

rowFields

java.util.ArrayList rowFields
list of RowField objects, related to row fields in Pivot Table


columnFields

java.util.ArrayList columnFields
list of ColumnField objects, related to column fields in Pivot Table


dataFields

java.util.ArrayList dataFields
list of DataField objects, related to data fields in Pivot Table


inputFilter

InputFilter inputFilter
optional row filter, used to skip rows from original data model

Class org.openswing.swing.pivottable.java.RowField extends java.lang.Object implements Serializable

Serialized Fields

columnName

java.lang.String columnName
column name in original TableModel, that identify this field


width

int width
column width, expressed in pixels


aggregator

GenericAggregator aggregator
field aggregator, that groups values; default value: GenericAggregator


description

java.lang.String description
column description

Class org.openswing.swing.pivottable.java.RowGenericNode extends java.lang.Object implements Serializable

Serialized Fields

vtreeNodes

java.util.HashMap vtreeNodes
collection of pairs


childrenNodes

java.util.ArrayList childrenNodes
list of GenericNode objects


nodeExpanded

boolean nodeExpanded
flag used to define if current node is expanded


value

java.lang.Object value
node value


rootNode

boolean rootNode
this is a root node


level

int level
depth level


colsParentNode

ColGenericNode colsParentNode
parent node of column fields list


hpath

GenericNodeKey hpath
node identifier


Package org.openswing.swing.pivottable.tablemodelreaders.server

Class org.openswing.swing.pivottable.tablemodelreaders.server.VOTableModel extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

valueObjects

java.util.List valueObjects
list of ValueObjects


voSetterMethods

java.util.Hashtable voSetterMethods
ValueObject setter methods


voGetterMethods

java.util.Hashtable voGetterMethods
ValueObject getter methods


valueObjectType

java.lang.Class valueObjectType
ValueObject type


reverseIndexes

java.util.Hashtable reverseIndexes
collection of couples: related attribute (String), column model index (Integer)


attributeNames

java.lang.String[] attributeNames
attribute names


Package org.openswing.swing.properties.client

Class org.openswing.swing.properties.client.PropertyCellEditor extends javax.swing.AbstractCellEditor implements Serializable

Serialized Fields

ic

InputControl ic
current editor

Class org.openswing.swing.properties.client.PropertyCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Class org.openswing.swing.properties.client.PropertyGridModel extends javax.swing.table.DefaultTableModel implements Serializable

Serialized Fields

mode

int mode
current grid mode; default value: READONLY


changedValues

java.util.Hashtable changedValues
collection of pairs


changedRows

java.util.HashSet changedRows
changed row indexes, expressed as a collection of Integer


Package org.openswing.swing.server

Class org.openswing.swing.server.ActionsCollection extends java.util.Hashtable implements Serializable

Class org.openswing.swing.server.Controller extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

actions

ActionsCollection actions
collections of pairs client request, action class


objectReceiver

ObjectReceiver objectReceiver
receiver class used in combination with "ClientUtils.getData" method to comunicate with a remote client via HTTP; default value: "DefaultObjectReceiver"


controllerCallbacksObj

ControllerCallbacks controllerCallbacksObj


Package org.openswing.swing.table.client

Class org.openswing.swing.table.client.Grid extends javax.swing.JTable implements Serializable

Serialized Fields

modelAdapter

VOListAdapter modelAdapter
TableModel adapter, used to link ValueObjects to TableModel


model

VOListTableModel model

colProps

Column[] colProps
TableModel column properties (name, type, etc.)


tableColumnModel

javax.swing.table.TableColumn[] tableColumnModel
TableColumn linked to the grid


activeCellBackgroundColor

java.awt.Color activeCellBackgroundColor
active cell background color


reorderingAllowed

boolean reorderingAllowed
flag used to enable column reordering


resizingAllowed

boolean resizingAllowed
flag used to enable column resizing


statusPanel

GridStatusPanel statusPanel
bottom panel included into the grid; used to view selected row numbers


scrollPane

javax.swing.JScrollPane scrollPane
scroll pane which contains the grid


ascSort

javax.swing.Icon ascSort
asceding order versus icon


descSort

javax.swing.Icon descSort
desceding order versus icon


filterSymbol

javax.swing.Icon filterSymbol
filter symbol icon


firstTime

boolean firstTime
flag used inside addNotify to set column headers and the toolbar state


grids

Grids grids

fromColIndex

int fromColIndex

toColIndex

int toColIndex

gridController

GridController gridController

lockedGrid

boolean lockedGrid
true if this is the locked grid


dragSource

java.awt.dnd.DragSource dragSource
drag source


gridId

java.lang.String gridId
grid identifier, used for DnD


dropTarget

java.awt.dnd.DropTarget dropTarget
drop gestures


dropTarget2

java.awt.dnd.DropTarget dropTarget2

rowHeightFixed

boolean rowHeightFixed
flag used to define if row height can change for each row, according to image height included in a cell of grid; default value: true


orderWithLoadData

boolean orderWithLoadData
flag used to define if grid sorting operation must always invoke loadData method to retrieve a new list of v.o. or the grid must sort the current v.o. list without invoking loadData (only with the whole result set loaded); default value: true


orderPolicy

OrderPolicy orderPolicy
interface that must be implemented in order to sort columns


gridType

int gridType
type of grid; possible values: Grid.MAIN_GRID, Grid.TOP_GRID, Grid.BOTTOM_GRID


colHeaderMouseListener

java.awt.event.MouseListener colHeaderMouseListener
mouse listener applied to table headers to sort columns or to show combo-box filter


vScrollbar

PaginationVerticalScrollbar vScrollbar
vertical scrollbar


controlDown

boolean controlDown
flag used to store a control key pressed event (in READONLY mode)


hasColSpan

boolean hasColSpan
flag used to disable column resizing, column moving and column visibility changing operations


headerToAdditionalHeader

java.util.Hashtable headerToAdditionalHeader
collection of pairs


additionalHeaderToHeaders

java.util.Hashtable additionalHeaderToHeaders
collection of pairs


cellSpans

java.util.Hashtable cellSpans
collection of pairs < Pair object, Pair object >, where the former identify a cell, i.e. a [row index,column index] and the latter the cell's span width and height


colorsInReadOnlyMode

boolean colorsInReadOnlyMode
flag used to define if background and foreground colors must be setted according to GridController definition only in READONLY mode


dragCursor

java.awt.Cursor dragCursor
cursor to show on dragging


searchWindowManager

SearchWindowManager searchWindowManager
search window manager


rightClickMouseListener

java.awt.event.MouseListener rightClickMouseListener

expandableColumnAttributeName

java.lang.String expandableColumnAttributeName
attribute name of the column declared as expandable, i.e. user can click on it to expand cell to show an inner component; default value: 0 (first column)


singleExpandableRow

boolean singleExpandableRow
define whether expanded rows in the past must be collapsed when expanding the current one; used only when "overwriteRowWhenExpanding" property is not null; default value: false


overwriteRowWhenExpanding

boolean overwriteRowWhenExpanding
define whether the row to show, when expanding the current one, must be showed over the current one on in a new row below it; used only when "overwriteRowWhenExpanding" property is not null; default value: false i.e. do not overwrite it


expandableRowController

ExpandableRowController expandableRowController
define the controller that manages row expansion


expandableRenderer

ExpandableRenderer expandableRenderer
expandable cell renderer


parentGrid

Grid parentGrid
cache used to store parent grid; calcilated by getParentGrid method


parentGridAlreadyCalculated

boolean parentGridAlreadyCalculated
flag used by getParentGrid method to set "parentGrid" property


headerHeight

int headerHeight
header height


currentEditor

java.awt.Component currentEditor
hook to current editor, used to listen for key events


gridListener

java.awt.event.KeyListener gridListener
used to listen for key events


comboFilterControllers

java.util.HashMap comboFilterControllers
combo-box filters to apply to column headers; collection of pairs


searchAdditionalRows

boolean searchAdditionalRows
flag used in grid to enable the retrieval of additional rows in fast search, when search criteria fails; default value: ClientSettings.SEARCH_ADDITION_ROWS


allowColumnsSortingInEdit

boolean allowColumnsSortingInEdit
flag used to allow the columns sorting in edit mode too; default value: false; note that this setting is used only when orderWithLoadData property is set to false


oldSelectedRow

int oldSelectedRow
store the last selection row index


oldSelectedColumn

int oldSelectedColumn
store the last selection column index

Class org.openswing.swing.table.client.Grids extends javax.swing.JPanel implements Serializable

Serialized Fields

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

lockedGrid

Grid lockedGrid
locked grid, anchored to the left (optional)


anchorLockedColumnsToLeft

boolean anchorLockedColumnsToLeft
define where to anchor locked columns: to the left or to the right of the grid; default value: true i.e. to the left


grid

Grid grid
main grid


lockedColumns

int lockedColumns
number of locked columns (anchored to the left); default value = 0


model

VOListTableModel model
TableModel linked to the grid


gridController

GridController gridController
grid controller, used to listen grid events


insertButton

InsertButton insertButton
button linked to the grid, used to set INSERT mode (insert new row on grid)


exportButton

ExportButton exportButton
button linked to the grid, used to export data


importButton

ImportButton importButton
button linked to the grid, used to import data


copyButton

CopyButton copyButton
button linked to the grid, used to set INSERT mode (copy the previous row on grid)


filterButton

FilterButton filterButton
button linked to the grid, used to open the filtering/sorting dialog (only in READONLY mode)


editButton

EditButton editButton
button linked to the grid, used to set EDIT mode (edit the selected row on grid)


reloadButton

ReloadButton reloadButton
button linked to the grid, used to set READONLY mode and to reload the TableModel


deleteButton

DeleteButton deleteButton
button linked to the grid, used to delete the selected rows


saveButton

SaveButton saveButton
button linked to the grid, used to commit the modified rows (on INSERT/EDIT mode)


modelAdapter

VOListAdapter modelAdapter
TableModel adapter, used to link ValueObjects to TableModel


navBar

NavigatorBar navBar
navigation bar (optional)


otherGridParams

java.util.Map otherGridParams
other grid parameters


gridDataLocator

GridDataLocator gridDataLocator
grid data locator; can be set to "ClientGridDataLocator" or to "ServerGridDataLocator"


gridControl

GridControl gridControl
grid graphics control


functionId

java.lang.String functionId
identifier (functionId) associated to the container


firstTime

boolean firstTime
flag used inside addNotify to set column headers and the toolbar state


filterPanel

QuickFilterPanel filterPanel
quick filter accessed by right mouse click on grid


popup

Grids.GridPopup popup
popup menu accessed by right mouse click on grid


removefilterItem

javax.swing.JMenuItem removefilterItem
menu item for removing column filtering


quickFilterValues

java.util.Map quickFilterValues
hashtable which contains the associations: attribute name, new FilterWhereClause[2] {FilterWhereClause,FilterWhereClause})


popupCommands

java.util.ArrayList popupCommands
list of custom commands added to the popup menu accessed by right mouse click on grid


lastIndex

int lastIndex
last row index already loaded on grid (related to result set); -1 = no rows yet loaded


startIndex

int startIndex
first row index to load on grid (related to result set); -1 = no rows yet loaded


moreRows

boolean moreRows
there are other rows in result set not yet loaded


genericButtons

java.util.ArrayList genericButtons
generic buttons


currentSortedColumns

java.util.ArrayList currentSortedColumns
current sorted columns


currentSortedVersusColumns

java.util.ArrayList currentSortedVersusColumns
current sorted columns versus (Ascending/Descending)


listenEvent

boolean listenEvent
flag used to enable listening of vertical scrolling events


statusPanel

GridStatusPanel statusPanel

colProps

Column[] colProps
TableModel column properties (name, type, etc.)


buttonsToDisable

java.util.Hashtable buttonsToDisable
collection of GenericButton objects to disable when the specified attribute will be setted to the specified value; pairs of type (GenericButton object, List of GenericButtonController objects)


maxNumberOfRowsOnInsert

int maxNumberOfRowsOnInsert
maximum number of rows to insert by pressing "down" key; default value: 1


allowInsertInEdit

boolean allowInsertInEdit
flag used to allow insert row (using DOWN key) in edit mode too; default value: false


currentNumberOfNewRows

int currentNumberOfNewRows
current number of new rows


filterDialog

FilterDialog filterDialog
filter dialog


gridType

int gridType
type of grid; possible values: Grid.MAIN_GRID, Grid.TOP_GRID, Grid.BOTTOM_GRID


scroll

javax.swing.JScrollPane scroll
locked + std grids scrollpane


maxSortedColumns

int maxSortedColumns
maximum number of sorted columns


loadDataCompletedListeners

java.util.ArrayList loadDataCompletedListeners
list of ActionListener objetcs related to the event "loading data completed"


expandedRows

java.util.ArrayList expandedRows
current expanded rows


cache

java.util.Hashtable cache
cache that contains inner components per row


currentNestedComponent

java.awt.Component currentNestedComponent
current nested component that is expanded and has focus


currentNestedComponentRow

int currentNestedComponentRow
current nested component row index


insertRowsOnTop

boolean insertRowsOnTop
define where new rows must be added: true at the top of the grid or false at the bottom; default value: true


editOnSingleRow

boolean editOnSingleRow
flag used to force the editing of one row only: the current selected row; default value: false, i.e. all rows are editable


currentEditingRow

int currentEditingRow
current selected row when grid is switched to EDIT mod and "editOnSingleRow" property is set to true


selectedRowBeforeReloading

int selectedRowBeforeReloading
selected row selected before reloading data on grid; used to reset selected row


totalResultSetLength

int totalResultSetLength
last record number in result set; -1 as default value


blockSize

int blockSize
block size; -1 if loading is not based on one page per time


currentValueButtons

java.util.HashMap currentValueButtons
current enabled button state, before GenericButton.setEnabled method calling


bindedButtons

java.util.HashSet bindedButtons
collection of buttons binded to grid (InsertButton, EditButton, etc)


onLoop

boolean onLoop

Class org.openswing.swing.table.client.GridStatusPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

statusLabel

javax.swing.JLabel statusLabel
text contained in the status panel


pageLabel

javax.swing.JLabel pageLabel
text contained in page panel


profileLabel

javax.swing.JLabel profileLabel
applied grid profile


statusPanel

javax.swing.JLabel statusPanel
status panel


profilePanel

javax.swing.JLabel profilePanel
applied grid profile panel


pagePanel

javax.swing.JLabel pagePanel
page panel

Class org.openswing.swing.table.client.PaginationVerticalScrollbar extends javax.swing.JScrollBar implements Serializable


Package org.openswing.swing.table.columns.client

Class org.openswing.swing.table.columns.client.ButtonColumn extends Column implements Serializable

Serialized Fields

text

java.lang.String text
button text; default value: "..."


actionListeners

java.util.ArrayList actionListeners
button action listeners


showAttributeValue

boolean showAttributeValue
flag used to indicate that attribute value will be showed as button text; default value: false i.e. the button text is defined by the "text" property


enableInReadOnlyMode

boolean enableInReadOnlyMode
flag used to indicate if the button is enabled also when the grid is in readonly mode; default value: false i.e. the button is enabled only in INSERT/EDIT modes, according to "editableOnEdit" and "editableOnInsert" properties


icon

javax.swing.Icon icon
icon to render within the button (optional)


iconName

java.lang.String iconName
file name (inside "image" folder) related to the icon to render within the button (optional)

Class org.openswing.swing.table.columns.client.CheckBoxColumn extends Column implements Serializable

Serialized Fields

positiveValue

java.lang.Object positiveValue
value used to select the check-box; default value: Boolean.TRUE


negativeValue

java.lang.Object negativeValue
value used to deselect the check-box; default value: Boolean.FALSE


itemListeners

java.util.ArrayList itemListeners
list of ItemListener object linked to the check-box


enableInReadOnlyMode

boolean enableInReadOnlyMode
flag used to indicate if the check-box is enabled also when the grid is in readonly mode; default value: false i.e. the check-box is enabled only in INSERT/EDIT modes, according to "editableOnEdit" and "editableOnInsert" properties


allowNullValue

boolean allowNullValue
define if null value is alloed (i.e. distinct from Boolean.FALSE value); default value: false


showDeSelectAllInPopupMenu

boolean showDeSelectAllInPopupMenu
define whether "select all" and "deselect all" menu items have to be added to popup menu when right clicking on this check-box column; default value: false


deSelectAllCells

boolean deSelectAllCells
define whether "select all" and "deselect all" commands must be applied on editable cells or on all cells, independently from cells editability; default value: false, i.e. do not select all cells independently from cells editability; note: this flag is used only when "showDeSelectAllInPopupMenu" property is set to true

Class org.openswing.swing.table.columns.client.CodLookupColumn extends Column implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum characters number


hideButton

boolean hideButton
flag used to set button visibility


enableCodBox

boolean enableCodBox
flag used to set if code field is editable


codePadding

boolean codePadding
flag used to set code padding (related to maxCharacter property); default "false"


allowOnlyNumbers

boolean allowOnlyNumbers
flag used to allow numbers only in code field


lookupController

LookupController lookupController
lookup controller


zeroLengthAsNull

boolean zeroLengthAsNull
flag used to set null value if code has zero length


codAttributeName

java.lang.String codAttributeName
attribute name linked to code field


hideCodeBox

boolean hideCodeBox
flag used to hide the code box


controllerClassName

java.lang.String controllerClassName
class name of the controller that must be invoked by pressing the "+" button


controllerMethodName

java.lang.String controllerMethodName
method name defined in ClientFacade class, related to the controller that must be invoked by pressing the "+" button


autoCompletitionWaitTime

long autoCompletitionWaitTime
wait time (expressed in ms) before showing code auto completition feature for lookup controls; default value: ClientSettings.LOOKUP_AUTO_COMPLETITION_WAIT_TIME


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


selectDataOnEdit

boolean selectDataOnEdit
flag used in grid to automatically select data in cell when editing cell; default value: ClientSettings.SELECT_DATA_IN_EDIT; falseto do not select data stored cell; true to automatically select data already stored in cell


orientation

java.awt.ComponentOrientation orientation
component orientation

Class org.openswing.swing.table.columns.client.Column extends javax.swing.JPanel implements Serializable

Serialized Fields

colRow

javax.swing.JPanel colRow
column cell under the column header


gridBagLayout1

java.awt.GridBagLayout gridBagLayout1
used to add column header and column cell


colHeader

javax.swing.JLabel colHeader
column header


columnName

java.lang.String columnName
attribute name linked to this column


preferredWidth

int preferredWidth
column width


maxWidth

int maxWidth
maximum column width


minWidth

int minWidth
minimum column width


editableOnInsert

boolean editableOnInsert
flag to enable column editing on insert grid mode


editableOnEdit

boolean editableOnEdit
flag to enable column editing on edit grid mode


columnVisible

boolean columnVisible
flag to view the column


columnSortable

boolean columnSortable
flag to enable column sorting by clicking on column header


columnFilterable

boolean columnFilterable
flag to enable column filtering by clicking with right mouse key


sortVersus

java.lang.String sortVersus
current sorting versus; 3 possible values: NO_SORTED, ASC_SORTED, DESC_SORTED (this property is managed only if "columnSortable" is true)


columnSelectable

boolean columnSelectable
flag to enable column (in)visibility, by clicking with right mouse key


columnRequired

boolean columnRequired
flag to define mandatory of column values when the grid is on edit/insert mode


sortingOrder

int sortingOrder
sequence of columns sorting in ORDER BY


headerColumnName

java.lang.String headerColumnName
column header description


headerTextHorizontalAlignment

int headerTextHorizontalAlignment
column header horizontal alignment; default value: SwingConstants.CENTER


columnDuplicable

boolean columnDuplicable
define if the cell column value is duplicated when user has clicked on COPY button


table

Grids table
inner grid


headerFont

java.awt.Font headerFont
header font; default value: ClientSettings.HEADER_FONT


headerForegroundColor

java.awt.Color headerForegroundColor
header foreground color; default value: ClientSettings.HEADER_FOREGROUND_COLOR (which is null as default value, i.e. default JLabel foreground color)


textAlignment

int textAlignment
column text horizontal alignment


additionalHeaderColumnName

java.lang.String additionalHeaderColumnName
additional column header description


additionalHeaderColumnSpan

int additionalHeaderColumnSpan
additional column header description; default value: 0 (i.e. it is not visible)


headerTextVerticalAlignment

int headerTextVerticalAlignment
column header vertical alignment; default value: ClientSettings.HEADER_TEXT_VERTICAL_ALIGNMENT


filter

ListFilterController filter
list-filter to add to this column (optional)


autoFitColumn

boolean autoFitColumn
flag used to auto fit column size, according to text header; default value: ClientSettings.AUTO_FIT_COLUMNS

Class org.openswing.swing.table.columns.client.ComboColumn extends Column implements Serializable

Serialized Fields

domainId

java.lang.String domainId
domain ID


domain

Domain domain
domain


itemListeners

java.util.ArrayList itemListeners
combo item listeners


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode combo box has no item selected; default value: false i.e. the first item is pre-selected


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


translateItemDescriptions

boolean translateItemDescriptions
define if description in combo items must be translated; default value: true


orientation

java.awt.ComponentOrientation orientation
component orientation


renderer

DomainTableCellRenderer renderer
cell renderer


editor

DomainCellEditor editor
cell editor

Class org.openswing.swing.table.columns.client.ComboVOColumn extends Column implements Serializable

Serialized Fields

itemListeners

java.util.ArrayList itemListeners
combo item listeners


nullAsDefaultValue

boolean nullAsDefaultValue
define if in insert mode combo box has no item selected; default value: false i.e. the first item is pre-selected


itemsMapper

org.openswing.swing.items.client.ItemsMapper itemsMapper
mapping between items v.o. attributes and items container v.o. attributes


itemsDataLocator

org.openswing.swing.items.client.ItemsDataLocator itemsDataLocator
items data source


itemsVO

ValueObject itemsVO
items value object


colProperties

Column[] colProperties
columns associated to lookup grid


allColumnVisible

boolean allColumnVisible
flag used to set visibility on all columns of lookup grid; default "false"


allColumnPreferredWidth

int allColumnPreferredWidth
default preferredWidth for all columns of lookup grid; default 100 pixels


getters

java.util.Hashtable getters
collection of pairs


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


foreignKeyAttributeName

java.lang.String foreignKeyAttributeName
attribute name in the combo-box v.o. that identify the attribute name in the v.o. of the combo-box container; as default value this attribute is null; null means that "attributeName" property will be used to identify the v.o. in the combo-box, i.e. the attribute names in the combo-box v.o. and in the container v.o. must have the same name


comboVOTableCellRenderer

ComboVOTableCellRenderer comboVOTableCellRenderer
cell renderer


comboBoxVOCellEditor

ComboBoxVOCellEditor comboBoxVOCellEditor
cell editor


orientation

java.awt.ComponentOrientation orientation
component orientation

Class org.openswing.swing.table.columns.client.CurrencyColumn extends DecimalColumn implements Serializable

Serialized Fields

currencySymbol

java.lang.String currencySymbol
currency symbol; default value: ClientSettings.getInstance().getResources().getCurrencySymbol()


currencySymbolOnLeft

boolean currencySymbolOnLeft
flag used to define the default position of currency symbol in currency control/column: on the left or on the right of the numeric value; default value: ClientSettings.CURRENCY_SYMBOL_ON_LEFT i.e. on the left of the numeric value

Class org.openswing.swing.table.columns.client.DateColumn extends Column implements Serializable

Serialized Fields

separator

char separator
separator


dateFormat

int dateFormat
date format; possible values: Resources.YMD, Resources.DMY, Resources.MDY, Resources.YDM


dateListeners

java.util.ArrayList dateListeners
date changed listeners


upperLimit

java.util.Date upperLimit
maximum allowed date


lowerLimit

java.util.Date lowerLimit
minimum allowed date


showCentury

boolean showCentury
flag used to show century


defaultDate

java.util.Calendar defaultDate
default date to set into the calendar, when opening it for the first time; null means today


dynamicSettings

DateColumnSettings dynamicSettings
dynamic settings used to reset cell renderer properties for each grid cell


strictUsage

boolean strictUsage
define how the date control must behave when an invalid date has been specified within it: clean up the content (stricy usage) or trying to correct it; default value: ClientSettings.DATE_COMPONENT_STRICT_USAGE

Class org.openswing.swing.table.columns.client.DateTimeColumn extends Column implements Serializable

Serialized Fields

separator

char separator
separator


dateFormat

int dateFormat
date format; possible values: Resources.YMD, Resources.DMY, Resources.MDY, Resources.YDM


dateListeners

java.util.ArrayList dateListeners
date changed listeners


upperLimit

java.util.Date upperLimit
maximum allowed date


lowerLimit

java.util.Date lowerLimit
minimum allowed date


showCentury

boolean showCentury
flag used to show century


timeFormat

java.lang.String timeFormat
possibile values: Resources.HH_MM or Resources.H_MM_AAA or Resources.HH_MM_SS or Resources.H_MM_SS_AAA


defaultDate

java.util.Calendar defaultDate
default date to set into the calendar, when opening it for the first time; null means today


dynamicSettings

DateColumnSettings dynamicSettings
dynamic settings used to reset cell renderer properties for each grid cell


strictUsage

boolean strictUsage
define how the date control must behave when an invalid date has been specified within it: clean up the content (stricy usage) or trying to correct it; default value: ClientSettings.DATE_COMPONENT_STRICT_USAGE

Class org.openswing.swing.table.columns.client.DecimalColumn extends Column implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of digits


maxValue

double maxValue
maximum value


minValue

double minValue
minimum value; default value: 0


decimals

int decimals
maximum number of decimals


grouping

boolean grouping
flag used to set thousands symbol visibility


dynamicSettings

DecimalColumnSettings dynamicSettings
dynamic settings used to reset numeric editor properties for each grid row


hideZeroDigits

boolean hideZeroDigits
flag used to define whether zero digits (after decimal point) must be hided/showed; default value: ClientSettings.ZERO_SHOWS_AS_ABSENT i.e. show zero digits


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 0


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 2


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


selectDataOnEdit

boolean selectDataOnEdit
flag used in grid to automatically select data in cell when editing cell; default value: ClientSettings.SELECT_DATA_IN_EDIT; falseto do not select data stored cell; true to automatically select data already stored in cell

Class org.openswing.swing.table.columns.client.FileColumn extends Column implements Serializable

Serialized Fields

showUploadButton

boolean showUploadButton
flag used to define if a file import button must be showed; default value: true


showDownloadButton

boolean showDownloadButton
flag used to define if a file export button must be showed; default value: true


fileNameAttributeName

java.lang.String fileNameAttributeName
optional attribute name used to bind this attribute to the file name


fileFilter

javax.swing.filechooser.FileFilter fileFilter
file filter used to filter image file selection from select button; default value: jpg and gif files only

Class org.openswing.swing.table.columns.client.FormattedTextColumn extends Column implements Serializable

Serialized Fields

textBox

FormattedTextColumn.FormattedTextBox textBox
formatted text field


controller

FormatterController controller
formatter controller


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0

Class org.openswing.swing.table.columns.client.ImageColumn extends Column implements Serializable

Serialized Fields

showButton

boolean showButton
flag used to define if an image selection button must be showed; default value: true


fileFilter

javax.swing.filechooser.FileFilter fileFilter
file filter used to filter image file selection from select button; default value: jpg and gif files only


listeners

java.util.ArrayList listeners
list of ActionListener objects added to selection button

Class org.openswing.swing.table.columns.client.IntegerColumn extends Column implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of digits


maxValue

int maxValue
maximum value


minValue

int minValue
minimum value; default value: 0


grouping

boolean grouping
flag used to set thousands symbol visibility


dynamicSettings

IntegerColumnSettings dynamicSettings
dynamic settings used to reset numeric editor properties for each grid row


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 0


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 2


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


selectDataOnEdit

boolean selectDataOnEdit
flag used in grid to automatically select data in cell when editing cell; default value: ClientSettings.SELECT_DATA_IN_EDIT; falseto do not select data stored cell; true to automatically select data already stored in cell

Class org.openswing.swing.table.columns.client.LinkColumn extends Column implements Serializable

Serialized Fields

actionListeners

java.util.ArrayList actionListeners
button action listeners


uriAttributeName

java.lang.String uriAttributeName
attribute name linked to the uri of this link, used to bind this link to a row of GridControl's value object; this is the URI to automatically open when clicking on link


orientation

java.awt.ComponentOrientation orientation
component orientation

Class org.openswing.swing.table.columns.client.MultiLineTextColumn extends Column implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of characters


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


selectDataOnEdit

boolean selectDataOnEdit
flag used in grid to automatically select data in cell when editing cell; default value: ClientSettings.SELECT_DATA_IN_EDIT; falseto do not select data stored cell; true to automatically select data already stored in cell


orientation

java.awt.ComponentOrientation orientation
component orientation

Class org.openswing.swing.table.columns.client.MultipleTypeColumn extends Column implements Serializable

Serialized Fields

typeController

TypeController typeController
defines the data type for each cell of the column; as default value this class manages all cells as text type


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0

Class org.openswing.swing.table.columns.client.PercentageColumn extends DecimalColumn implements Serializable

Class org.openswing.swing.table.columns.client.ProgressBarColumn extends Column implements Serializable

Serialized Fields

coloredBands

java.util.ArrayList coloredBands
list of colored bands


maxValue

double maxValue
max value


minValue

double minValue
minimum value


showAllBands

boolean showAllBands
flag used to determine how to color the progress bar: true to paint the bar with many colors, each band with its color, false to paint the bar with ony one color: the color related to the last matched band; default value: true


currentColor

java.awt.Color currentColor
current used color; default value: ClientSettings.GRID_SELECTION_BACKGROUND

Class org.openswing.swing.table.columns.client.SpinnerListColumn extends Column implements Serializable

Serialized Fields

domainId

java.lang.String domainId
domain ID


domain

Domain domain
domain


changeListeners

java.util.ArrayList changeListeners
spinner change listeners


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


translateItemDescriptions

boolean translateItemDescriptions
define if description in spinner items must be translated; default value: true


orientation

java.awt.ComponentOrientation orientation
component orientation


renderer

DomainTableCellRenderer renderer
cell renderer


editor

SpinnerListCellEditor editor
cell editor

Class org.openswing.swing.table.columns.client.SpinnerNumberColumn extends Column implements Serializable

Serialized Fields

changeListeners

java.util.ArrayList changeListeners
change listeners


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


orientation

java.awt.ComponentOrientation orientation
component orientation


renderer

TextTableCellRenderer renderer
cell renderer


editor

SpinnerNumberCellEditor editor
cell editor


horizontalAlignment

int horizontalAlignment
horizontal alignment


maxValue

java.lang.Double maxValue
maximum value


minValue

java.lang.Double minValue
minimum value; default value: 0


initialValue

java.lang.Double initialValue
initial value; default value: 0


step

java.lang.Double step
increment value; default value: 1

Class org.openswing.swing.table.columns.client.TextColumn extends Column implements Serializable

Serialized Fields

maxCharacters

int maxCharacters
maximum number of characters


upperCase

boolean upperCase
flag used to translate the text on uppercase


trimText

boolean trimText
flag used to trim the text


rpadding

boolean rpadding
flag used to right padding the text (related to maxCharacters property)


encryptText

boolean encryptText
flag used to view "*" symbols instead of the real text in read-only mode; useful for password fields


leftMargin

int leftMargin
component left margin, with respect to component container; defaut value: 2


rightMargin

int rightMargin
component right margin, with respect to component container; defaut value: 0


topMargin

int topMargin
component top margin, with respect to component container; defaut value: 0


bottomMargin

int bottomMargin
component bottom margin, with respect to component container; defaut value: 0


selectDataOnEdit

boolean selectDataOnEdit
flag used in grid to automatically select data in cell when editing cell; default value: ClientSettings.SELECT_DATA_IN_EDIT; falseto do not select data stored cell; true to automatically select data already stored in cell


orientation

java.awt.ComponentOrientation orientation
component orientation

Class org.openswing.swing.table.columns.client.TimeColumn extends Column implements Serializable

Serialized Fields

timeFormat

java.lang.String timeFormat
possibile values: Resources.HH_MM or Resources.H_MM_AAA or Resources.HH_MM_SS or Resources.H_MM_SS_AAA


dateListeners

java.util.ArrayList dateListeners
date changed listeners


dynamicSettings

DateColumnSettings dynamicSettings
dynamic settings used to reset cell renderer properties for each grid cell


strictUsage

boolean strictUsage
define how the date control must behave when an invalid date has been specified within it: clean up the content (stricy usage) or trying to correct it; default value: ClientSettings.DATE_COMPONENT_STRICT_USAGE


Package org.openswing.swing.table.filter.client

Class org.openswing.swing.table.filter.client.FilterDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

panel

FilterPanel panel
filter panel

Class org.openswing.swing.table.filter.client.FilterPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel

tabbedPane

javax.swing.JTabbedPane tabbedPane

borderLayout2

java.awt.BorderLayout borderLayout2

orderPanel

javax.swing.JPanel orderPanel

filterPanel

javax.swing.JPanel filterPanel

orderScrollPane

javax.swing.JScrollPane orderScrollPane

borderLayout3

java.awt.BorderLayout borderLayout3

filterScrollPane

javax.swing.JScrollPane filterScrollPane

oPanel

javax.swing.JPanel oPanel

fPanel

javax.swing.JPanel fPanel

gridBagLayout1

java.awt.GridBagLayout gridBagLayout1

gridBagLayout2

java.awt.GridBagLayout gridBagLayout2

filterButton

GenericButton filterButton

flowLayout1

java.awt.FlowLayout flowLayout1

topPanel

javax.swing.JPanel topPanel

gridBagLayout4

java.awt.GridBagLayout gridBagLayout4

gridBagLayout3

java.awt.GridBagLayout gridBagLayout3

colProperties

Column[] colProperties
column properties


filterColNames

java.util.ArrayList filterColNames
list of column names used to filter the grid


filterColOps

java.util.ArrayList filterColOps
list of combo boxes that contain filter criteria (equals, like, etc.); used to filter the grid


filterColValues

java.util.ArrayList filterColValues
list of input controls used to contain the filter value, according to column type; each element is a JComponent[] array


filterColumns

java.util.Hashtable filterColumns
collection of pairs


initialFilterList

java.util.Map initialFilterList
filter clauses initially applied to columns; collection of pairs


sortColNames

java.util.ArrayList sortColNames
list of combo boxes that contain column names; used to sort the grid


sortVersus

java.util.ArrayList sortVersus
list of combo boxes that contain sort versus (ASC/DESC)


grid

Grids grid
grid controller


orderColumns

java.util.Hashtable orderColumns
collection of pairs


initialOrderList

java.util.ArrayList initialOrderList
order and sort versus for columns initially sorted (String[]{attribute name,ASC/DESC})


filterPanelOnGridPolicy

int filterPanelOnGridPolicy
used only when "showFilterPanelOnGrid" is set to true; define filter panel policy for hiding it; allowed values: Consts.FILTER_PANEL_ON_GRID_xxx


gridBagLayout5

java.awt.GridBagLayout gridBagLayout5

lockPanel

GenericButton lockPanel

lockImage

javax.swing.ImageIcon lockImage

unlockImage

javax.swing.ImageIcon unlockImage

locked

boolean locked

closePanel

GenericButton closePanel

Class org.openswing.swing.table.filter.client.QuickFilterPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

label1

javax.swing.JLabel label1

label2

javax.swing.JLabel label2

value1

javax.swing.JComponent value1

value2

javax.swing.JComponent value2

rangeButton

javax.swing.JToggleButton rangeButton

filterButton

javax.swing.JButton filterButton

parentPopup

javax.swing.JPopupMenu parentPopup

filterIcon

javax.swing.Icon filterIcon

attributeName

java.lang.String attributeName

filterType

int filterType

initValue

java.lang.Object initValue

colProperties

Column colProperties

domain

Domain domain

EQUALS

java.lang.String EQUALS

CONTAINS

java.lang.String CONTAINS

STARTS_WITH

java.lang.String STARTS_WITH

ENDS_WITH

java.lang.String ENDS_WITH

opType

javax.swing.JList opType
list of filter criteria


opTypeScrollPane

javax.swing.JScrollPane opTypeScrollPane

filterListener

QuickFilterListener filterListener

defaultQuickFilterCriteria

int defaultQuickFilterCriteria
default value that could be set in the quick filter criteria; values allowed: Consts.EQUALS,Consts.CONTAINS,Consts.STARTS_WITH,Consts.ENDS_WITH


comboFilterController

ListFilterController comboFilterController
combo-box filter to apply to column headers (optional)


listIcon

javax.swing.Icon listIcon
filtering button icon


listButton

javax.swing.JButton listButton
list button


listControlDomain

Domain listControlDomain
domain to bind to checkbox list control to show when pressing combo button (optional)


showListControl

boolean showListControl
used to show/hide checkbox list control (optional)


checkBoxListControl

CheckBoxListControl checkBoxListControl
checkbox list control (optional)


filter

FilterWhereClause[] filter
current applied filter


Package org.openswing.swing.table.java

Class org.openswing.swing.table.java.ClientGridDataLocator extends java.lang.Object implements Serializable

Class org.openswing.swing.table.java.EJBGridDataLocator extends java.lang.Object implements Serializable

Serialized Fields

serverMethodName

java.lang.String serverMethodName
method to call on the server side


ejbName

java.lang.String ejbName
ejb remote interface to call on the server side

Class org.openswing.swing.table.java.ServerGridDataLocator extends java.lang.Object implements Serializable

Serialized Fields

serverMethodName

java.lang.String serverMethodName
method to call on the server side


Package org.openswing.swing.table.model.client

Class org.openswing.swing.table.model.client.VOListTableModel extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

fieldAdapter

VOListAdapter fieldAdapter
adapter which maps v.o. attribute names to TableModel columns


data

java.util.Vector data
ValueObject list


modified

boolean modified
flag which indicates if the TableModel is changed (add/update/delete row)


mode

int mode
current grid mode; default value: READONLY


modelListener

VOListTableModelListener modelListener
TableModel events listener


changedRows

java.util.ArrayList changedRows
indexes of TableModel changed rows (Integer objects)


changedVOs

java.util.Hashtable changedVOs
collection of value objects that have been changed; content: row index, original v.o. (before changes)


Package org.openswing.swing.table.permissions.java

Class org.openswing.swing.table.permissions.java.GridPermissions extends java.lang.Object implements Serializable

Serialized Fields

functionId

java.lang.String functionId
identifier (functionId) associated to the grid


username

java.lang.String username
permissions owner, i.e. the username of the current logged user


columnsAttribute

java.lang.String[] columnsAttribute
list of grid columns; columns position is defined according to this array


columnsVisibility

boolean[] columnsVisibility
columns visibility state


columnsEditabilityInEdit

boolean[] columnsEditabilityInEdit
columns editability in edit


columnsEditabilityInInsert

boolean[] columnsEditabilityInInsert
columns editability in insert


columnsMandatory

boolean[] columnsMandatory
columns mandatory


Package org.openswing.swing.table.renderers.client

Class org.openswing.swing.table.renderers.client.ButtonTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

rend

javax.swing.JButton rend
cell content


gridController

GridController gridController
grid controller


showAttributeValue

boolean showAttributeValue
flag used to indicate that attribute value will be showed as button text; default value: false i.e. the button text is defined by the "text" property


defaultFont

java.awt.Font defaultFont
default font


enableInReadOnlyMode

boolean enableInReadOnlyMode
flag used to indicate if the button is enabled also when the grid is in readonly mode; default value: false i.e. the button is enabled only in INSERT/EDIT modes, according to "editableOnEdit" and "editableOnInsert" properties


attributeName

java.lang.String attributeName
attribute name associated to this column

Class org.openswing.swing.table.renderers.client.CheckBoxTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

selected

java.lang.Boolean selected
flag used to store the current check-box state


rend

CheckBoxTableCellRenderer.CheckLabel rend
cell content (the check-box is drawed inside)


paintBorder

boolean paintBorder
flag used to draw the check-box border, if cell has currently the focus


selectionForeground

java.awt.Color selectionForeground
border color, if cell has currently the focus


gridContainer

GridController gridContainer
grid container


defaultFont

java.awt.Font defaultFont
default font


enableInReadOnlyMode

boolean enableInReadOnlyMode
flag used to indicate if the button is enabled also when the grid is in readonly mode; default value: false i.e. the button is enabled only in INSERT/EDIT modes, according to "editableOnEdit" and "editableOnInsert" properties


allowNullValue

boolean allowNullValue
define if null value is alloed (i.e. distinct from Boolean.FALSE value); default value: false


attributeName

java.lang.String attributeName
attribute name associated to this column


positiveValue

java.lang.Object positiveValue
value used to select the check-box


negativeValue

java.lang.Object negativeValue
value used to deselect the check-box

Class org.openswing.swing.table.renderers.client.CodLookupCellRenderer extends TextTableCellRenderer implements Serializable

Serialized Fields

hideCodBox

boolean hideCodBox
flag used to view "" instead of the real text

Class org.openswing.swing.table.renderers.client.ComboVOTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


defaultFont

java.awt.Font defaultFont
default font


itemsDataLocator

org.openswing.swing.items.client.ItemsDataLocator itemsDataLocator
items data source


itemsVO

ValueObject itemsVO
items value object


colProperties

Column[] colProperties
columns associated to lookup grid


allColumnVisible

boolean allColumnVisible
flag used to set visibility on all columns of lookup grid; default "false"


allColumnPreferredWidth

int allColumnPreferredWidth
default preferredWidth for all columns of lookup grid; default 100 pixels


getters

java.util.Hashtable getters
collection of pairs


items

java.util.List items
value objects list


rend

org.openswing.swing.items.client.ItemRenderer rend
cell content


attributeName

java.lang.String attributeName
attribute name associated to this column


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container


foreignKeyAttributeName

java.lang.String foreignKeyAttributeName
attribute name in the combo-box v.o. that identify the attribute name in the v.o. of the combo-box container; as default value this attribute is null; null means that "attributeName" property will be used to identify the v.o. in the combo-box, i.e. the attribute names in the combo-box v.o. and in the container v.o. must have the same name

Class org.openswing.swing.table.renderers.client.DateTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


type

int type
column type: Column.TYPE_DATE, Column.TYPE_DATE_TIME, Column.TYPE_TIME


dateFormat

java.lang.String dateFormat
date format


defaultFont

java.awt.Font defaultFont
default font


alignement

int alignement
horizontal alignement


attributeName

java.lang.String attributeName
attribute name associated to this column


dynamicSettings

DateColumnSettings dynamicSettings
dynamic settings used to reset cell renderer properties for each grid cell


row

int row
current row to render

Class org.openswing.swing.table.renderers.client.DomainTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

rend

javax.swing.JLabel rend
cell content


domain

Domain domain
domain linked to the column


gridController

GridController gridController
grid controller


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name associated to this column


container

javax.swing.JPanel container
component container


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container


translateItemDescriptions

boolean translateItemDescriptions
define if description in combo items must be translated

Class org.openswing.swing.table.renderers.client.ExpandablePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

grid

Grid grid
parent grid


nestedComponent

java.awt.Component nestedComponent
parent grid

Class org.openswing.swing.table.renderers.client.ExpandableRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

mainPanel

javax.swing.JPanel mainPanel
cell content


defaultCellRenderer

javax.swing.table.TableCellRenderer defaultCellRenderer
default cell content


grid

Grid grid
JTable component


grids

Grids grids
JTable container


modelAdapter

VOListAdapter modelAdapter
TableModel adapter, used to link ValueObjects to TableModel


expandableColumn

int expandableColumn
expandable column index


plusImage

java.awt.Image plusImage
plus image to used when expanding row


minusImage

java.awt.Image minusImage
minus image to used when expanding row


treeLinesPanel

ExpandableRenderer.TreeLinesPanel treeLinesPanel
tree lines image panel to used when expanding row


row

int row
current editing row


rendTreePanel

ExpandableRenderer.PlusPanel rendTreePanel
tree panel used in renderer


expTreePanel

ExpandableRenderer.MinusPanel expTreePanel
tree panel used in nested component container


currentExpandedRow

int currentExpandedRow
current expanded row; -1 if no row is currently expanded

Class org.openswing.swing.table.renderers.client.FileTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


attributeName

java.lang.String attributeName
attribute name associated to this column


fileNameAttributeName

java.lang.String fileNameAttributeName
optional attribute name used to bind this attribute to the file name


rend

javax.swing.JPanel rend
cell renderer


fileName

javax.swing.JLabel fileName
file name


upload

javax.swing.JButton upload
upload button


download

javax.swing.JButton download
download button


cellContent

byte[] cellContent
current cell content


table

javax.swing.JTable table
grid control

Class org.openswing.swing.table.renderers.client.FormattedTextTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name associated to this column


formattedBox

javax.swing.JFormattedTextField formattedBox
formatter box


container

javax.swing.JPanel container
component container


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container

Class org.openswing.swing.table.renderers.client.ImageTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

rend

ImagePanel rend
cell content


gridController

GridController gridController
grid controller


attributeName

java.lang.String attributeName
attribute name associated to this column

Class org.openswing.swing.table.renderers.client.LinkTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

rend

LinkButton rend
cell content


gridController

GridController gridController
grid controller


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name linked to the text of this link, used to bind this link to a row of GridControl's value object


uriAttributeName

java.lang.String uriAttributeName
attribute name linked to the text of this link, used to bind this link to a row of GridControl's value object

Class org.openswing.swing.table.renderers.client.MultiLineTextTableCellRenderer extends javax.swing.JTextArea implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name associated to this column


container

javax.swing.JPanel container
component container


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container

Class org.openswing.swing.table.renderers.client.MultipleTypeTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


typeController

TypeController typeController
mutiple type controller


row

int row
current editing row


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name that identify this column


grid

GridControl grid
grid control that contains this column renderer


inputControls

java.util.Hashtable inputControls
cache of input controls already created and reusable according to cell's data type


p

javax.swing.JPanel p

l

javax.swing.JLabel l
used instead of a combo-box


container

javax.swing.JPanel container
component container


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container

Class org.openswing.swing.table.renderers.client.ProgressBarTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridContainer

GridController gridContainer
grid container


coloredBands

java.util.ArrayList coloredBands

minValue

double minValue

maxValue

double maxValue

showAllBands

boolean showAllBands

currentColor

java.awt.Color currentColor

attributeName

java.lang.String attributeName
attribute name associated to this column

Class org.openswing.swing.table.renderers.client.TextTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

gridController

GridController gridController
grid controller


encryptText

boolean encryptText
flag used to view "*" symbols instead of the real text


defaultFont

java.awt.Font defaultFont
default font


attributeName

java.lang.String attributeName
attribute name associated to this column


container

javax.swing.JPanel container
component container


leftMargin

int leftMargin
component left margin, with respect to component container


rightMargin

int rightMargin
component right margin, with respect to component container


topMargin

int topMargin
component top margin, with respect to component container


bottomMargin

int bottomMargin
component bottom margin, with respect to component container


Package org.openswing.swing.tree.client

Class org.openswing.swing.tree.client.TreeGrid extends javax.swing.JTable implements Serializable

Serialized Fields

tree

TreeGrid.TreeTableCellRenderer tree
a subclass of JTree.


treeRenderer

TreeGrid.TreeGridNodeRenderer treeRenderer

gridColumnAlignments

java.util.Hashtable gridColumnAlignments
grid columns alignments: collection of pairs


attributeName

java.lang.String attributeName
attribute name that identifies the column containing the tree


gridColumns

java.util.ArrayList gridColumns
attribute names to used to show grid columns


iconAttributeName

java.lang.String iconAttributeName
optional attribute name that identifies the name of the image to show as tree node

Class org.openswing.swing.tree.client.TreeGrid.TreeGridNodeRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable

Serialized Fields

folderIcon

javax.swing.ImageIcon folderIcon

leafIcon

javax.swing.ImageIcon leafIcon

treePanel

TreePanel treePanel

formatter

java.text.Format formatter
formatter to use for this column (optional, may be null)

Class org.openswing.swing.tree.client.TreeGrid.TreeTableCellRenderer extends javax.swing.JTree implements Serializable

Serialized Fields

visibleRow

int visibleRow
last table/tree row asked to renderer.

Class org.openswing.swing.tree.client.TreeGridPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

gridColumns

java.util.ArrayList gridColumns
attribute names to used to show grid columns


gridColumnSizes

java.util.ArrayList gridColumnSizes
grid columns sizes


gridColumnAlignments

java.util.Hashtable gridColumnAlignments
grid columns alignments: collection of pairs


rootVisible

boolean rootVisible
determines whether or not the root node from the TreeModel is visible; default value: true


tree

TreeGrid tree
expandable tree


treeRoot

javax.swing.tree.DefaultMutableTreeNode treeRoot
tree root


treePane

javax.swing.JScrollPane treePane
tree container


treeDataLocator

TreeDataLocator treeDataLocator
data source used to fill in the tree


treeController

TreeController treeController
tree controller: it manages tree events


popup

javax.swing.JPopupMenu popup
pop-up menu related to right mouse click on a tree node (optional)


menuItems

java.util.Hashtable menuItems
collection of pairs: menu item description (not yet translated), menu item object; used to change the menu item abilitation


firstTime

boolean firstTime
flag used inside addNotify method


leavesImageName

java.lang.String leavesImageName
image icon used for leaves; default value: as for folders


loadWhenVisibile

boolean loadWhenVisibile
define if tree will be filled on viewing this panel; default value: true


expandAllNodes

boolean expandAllNodes
define if all tree nodes must be expanded after loading


folderIconName

java.lang.String folderIconName
folder node image name


getterMethods

java.lang.reflect.Method[] getterMethods
getter methods in v.o. inside the tree node related to gridColumns


columnHeaders

java.util.ArrayList columnHeaders
column headers; as default value are setted as attribute names translations


columnFormatters

java.util.ArrayList columnFormatters
column data formatters; as default settings all columns are converted into String objects


expandRoot

boolean expandRoot
define if root node must be automatically expanded when "expandAllNodes" property is set to false; default value: true


iconAttributeName

java.lang.String iconAttributeName
optional attribute name that identifies the name of the image to show as tree node


backgroundColor

java.awt.Color backgroundColor
background color for this component

Class org.openswing.swing.tree.client.TreeNodeRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable

Serialized Fields

folderIcon

javax.swing.ImageIcon folderIcon
default folder icon


leafIcon

javax.swing.ImageIcon leafIcon
default leaf icon


treePanel

TreePanel treePanel
tree panel that uses this renderer


iconAttributeName

java.lang.String iconAttributeName
attribute name that contains the icon image name; default value: null; if defined, this attribute overrides "folderIcon"/"leafIcon" values


tooltipAttributeName

java.lang.String tooltipAttributeName
attribute name that contains the tool tip text for the node; default value: null


checkBox

TreeNodeRenderer.CheckBoxLabel checkBox
check-box showed when treePanel.isShowCheckBoxes is true


panel

javax.swing.JPanel panel
panel that contains check-box, image and description

Class org.openswing.swing.tree.client.TreePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

checkedNodes

java.util.HashSet checkedNodes
current checked nodes (i.e. nodes having selected the associated check-box)


selectionBackground

java.awt.Color selectionBackground
tree selection background color


selectionForeground

java.awt.Color selectionForeground
tree selection foreground color


tree

javax.swing.JTree tree
expandable tree


table

javax.swing.JTable table
tree container


treeModel

javax.swing.tree.DefaultTreeModel treeModel
tree model


treePane

javax.swing.JScrollPane treePane
tree container


treeDataLocator

TreeDataLocator treeDataLocator
data source used to fill in the tree


treeController

TreeController treeController
tree controller: it manages tree events


popup

javax.swing.JPopupMenu popup
pop-up menu related to right mouse click on a tree node (optional)


menuItems

java.util.Hashtable menuItems
collection of pairs: menu item description (not yet translated), menu item object; used to change the menu item abilitation


firstTime

boolean firstTime
flag used inside addNotify method


leavesImageName

java.lang.String leavesImageName
image icon used for leaves; default value: as for folders


loadWhenVisibile

boolean loadWhenVisibile
define if tree will be filled on viewing this panel; default value: true


expandAllNodes

boolean expandAllNodes
define if all tree nodes must be expanded after loading


folderIconName

java.lang.String folderIconName
folder node image name


dragSource

java.awt.dnd.DragSource dragSource
drag source


dropTarget

java.awt.dnd.DropTarget dropTarget
drop gestures


dndListener

TreeDragNDropListener dndListener
drag 'n' drop listener


treeId

java.lang.String treeId
tree identifier, used for DnD


iconAttributeName

java.lang.String iconAttributeName
attribute name that contains the icon image name; default value: null; if defined, this attribute overrides "folderIcon"/"leafIcon" values


tooltipAttributeName

java.lang.String tooltipAttributeName
attribute name that contains the tool tip text for the node; default value: null


searchWindowManager

SearchWindowManager searchWindowManager
search manager


rootVisible

boolean rootVisible
Determines whether or not the root node from the TreeModel is visible; default value: true


selectionMode

int selectionMode
tree selection mode; allowed values: TreeSelectionModel.SINGLE_TREE_SELECTION,TreeSelectionModel.CONTIGUOUS_TREE_SELECTION or TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION. Default value: TreeSelectionModel.SINGLE_TREE_SELECTION


rowHeight

int rowHeight
tree row height


showsRootHandles

boolean showsRootHandles
specifies whether the node handles should be displayed; default value: true


keyListeners

java.util.ArrayList keyListeners
list of KeyListener objects added to the tree


mouseListeners

java.util.ArrayList mouseListeners
list of MouseListener objects added to the tree


dragCursor

java.awt.Cursor dragCursor
cursor to show on dragging


showCheckBoxes

boolean showCheckBoxes
define if a check-box must be showed for each node; default value: false


showCheckBoxesOnLeaves

boolean showCheckBoxesOnLeaves
define if a check-box must be showed for leaves nodes too; default value: true


itemListeners

java.util.ArrayList itemListeners
list of ItemListener objects added to the check-box tree


expandRoot

boolean expandRoot
define if root node must be automatically expanded when "expandAllNodes" property is set to false; default value: true


treeChanged

boolean treeChanged
flag used to mark the state "tree content changed"

Class org.openswing.swing.tree.client.TreeTableModelAdapter extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

tree

javax.swing.JTree tree

treeTableModel

TreeTableModel treeTableModel


Package org.openswing.swing.tree.java

Class org.openswing.swing.tree.java.OpenSwingTreeNode extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

Serialized Fields

clonedUserObject

java.lang.Object clonedUserObject


Package org.openswing.swing.util.client

Class org.openswing.swing.util.client.ClientUtils extends javax.swing.JApplet implements Serializable


Package org.openswing.swing.util.dataconverters.java

Class org.openswing.swing.util.dataconverters.java.DataConverterException extends java.lang.Exception implements Serializable


Package org.openswing.swing.wizard.client

Class org.openswing.swing.wizard.client.WizardInnerPanel extends javax.swing.JPanel implements Serializable

Class org.openswing.swing.wizard.client.WizardPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

borderLayout1

java.awt.BorderLayout borderLayout1

mainPanel

javax.swing.JPanel mainPanel

buttonsPanel

javax.swing.JPanel buttonsPanel

cardLayout1

java.awt.CardLayout cardLayout1

backButton

javax.swing.JButton backButton

nextButton

javax.swing.JButton nextButton

cancelButton

javax.swing.JButton cancelButton

flowLayout1

java.awt.FlowLayout flowLayout1

listeners

java.util.ArrayList listeners
list of action listeners linked to the buttons


panels

java.util.ArrayList panels
list of WizardInnerPanel objects


wizardController

WizardController wizardController
navigation logic controller


currentVisiblePanel

WizardInnerPanel currentVisiblePanel
WizardInnerPanel panel currently showed


imagePanel

WizardPanel.ImagePanel imagePanel
image panel, showed at the left of an inner panel


imageName

java.lang.String imageName
(optional) image name to show in all inner panels; this setting is overrided by the getImageName() method defined for each inner panel


backImageName

java.lang.String backImageName
image name for "Back" button


nextImageName

java.lang.String nextImageName
image name for "Next" button


cancelImageName

java.lang.String cancelImageName
image name for "Cancel" button


finishImageName

java.lang.String finishImageName
image name for "Finish" button