Serialized Form


Package de.twenty11.skysail.common

Class de.twenty11.skysail.common.MapData extends Object implements Serializable

serialVersionUID: -1333792074749919182L

Serialized Fields

dictionary

Map<K,V> dictionary

type

String type

Package de.twenty11.skysail.common.forms

Class de.twenty11.skysail.common.forms.FieldDefinition extends Object implements Serializable

serialVersionUID: 6627992829570047981L

Serialized Fields

name

String name
name of the field, should be unique per form.


type

FieldType type
http://www.w3.org/TR/html401/interact/forms.html.


value

String value
the string representation of the value to be shown.

Class de.twenty11.skysail.common.forms.FormData extends Object implements Serializable

serialVersionUID: 4534925071257754501L

Serialized Fields

fields

Map<K,V> fields
payload of FormData.


formBuilder

FormBuilder formBuilder

Package de.twenty11.skysail.common.grids

Class de.twenty11.skysail.common.grids.ColumnDefinition extends Object implements Serializable

serialVersionUID: 7871296812642842749L

Serialized Fields

name

String name

width

Integer width
width (hint) of the column. Null means: no hint.


sorting

Integer sorting
Idea: Positive values indicate descending ordering, negative ones ascending. the higher the number (if positive), the higher the weight of this column, e.g. if one column A has "3" and column "B" has value "2", sorting will be like "sort by A desc, B desc". Accordingly for negative numbers. sorting set to NULL means no sorting should be possible on this column.


filterValue

String filterValue
A string representation of the filter to be applied, if any. Otherwise empty String.

Class de.twenty11.skysail.common.grids.ColumnSortOrderComparator extends Object implements Serializable

serialVersionUID: 9112648222241321210L

Class de.twenty11.skysail.common.grids.GridData extends Object implements Serializable

serialVersionUID: 3808733942569990251L

Serialized Fields

columns

Columns columns
the columns, a managed list of columnDefinitions.


rows

List<E> rows
a list of RowData elements forming the rows of the rows.


availableRowsCount

Integer availableRowsCount
pagination: the total number of rows available (even though maybe less rows will be returned.


type

String type

Class de.twenty11.skysail.common.grids.RowData extends Object implements Serializable

serialVersionUID: -8906891746212796759L

Serialized Fields

cells

Map<K,V> cells

columnsAsArray

ColumnDefinition[] columnsAsArray
the associated columns, accessible via index, provided in the constructor.


columnDataMap

Map<K,V> columnDataMap
an internal representation of columnInfo/values, build up whenever method 'add' is called.


columnCounter

int columnCounter
the counter of the position in the columnsAsArray member.



Copyright © 2011-2012. All Rights Reserved.