Serialized Form
nextWindowId
int nextWindowId
- Id use for the next window that is opened. Access to this must be
synchronized.
context
ApplicationContext context
- Application context the application is running in.
user
Object user
- The current user or
null
if no user has logged in.
windows
Hashtable<K,V> windows
- Mapping from window name to window instance.
mainWindow
Window mainWindow
- Main window of the application.
applicationUrl
URL applicationUrl
- The application's URL.
theme
String theme
- Name of the theme currently used by the application.
applicationIsRunning
boolean applicationIsRunning
- Application status.
properties
Properties properties
- Application properties.
locale
Locale locale
- Default locale of the application.
userChangeListeners
LinkedList<E> userChangeListeners
- List of listeners listening user changes.
windowAttachListeners
LinkedList<E> windowAttachListeners
- Window attach listeners.
windowDetachListeners
LinkedList<E> windowDetachListeners
- Window detach listeners.
resourceKeyMap
Hashtable<K,V> resourceKeyMap
- Application resource mapping: key <-> resource.
keyResourceMap
Hashtable<K,V> keyResourceMap
lastResourceKeyNumber
long lastResourceKeyNumber
logoutURL
String logoutURL
- URL where the user is redirected to on application close, or null if
application is just closed without redirection.
errorHandler
Terminal.ErrorListener errorHandler
- Application wide error handler which is used by default if an error is
left unhandled.
throwable
Throwable throwable
sessionExpiredURL
String sessionExpiredURL
sessionExpiredNotificationEnabled
boolean sessionExpiredNotificationEnabled
sessionExpiredCaption
String sessionExpiredCaption
sessionExpiredMessage
String sessionExpiredMessage
communicationErrorURL
String communicationErrorURL
communicationErrorNotificationEnabled
boolean communicationErrorNotificationEnabled
communicationErrorCaption
String communicationErrorCaption
communicationErrorMessage
String communicationErrorMessage
authenticationErrorURL
String authenticationErrorURL
authenticationErrorNotificationEnabled
boolean authenticationErrorNotificationEnabled
authenticationErrorCaption
String authenticationErrorCaption
authenticationErrorMessage
String authenticationErrorMessage
internalErrorURL
String internalErrorURL
internalErrorNotificationEnabled
boolean internalErrorNotificationEnabled
internalErrorCaption
String internalErrorCaption
internalErrorMessage
String internalErrorMessage
outOfSyncURL
String outOfSyncURL
outOfSyncNotificationEnabled
boolean outOfSyncNotificationEnabled
outOfSyncCaption
String outOfSyncCaption
outOfSyncMessage
String outOfSyncMessage
cookiesDisabledURL
String cookiesDisabledURL
cookiesDisabledNotificationEnabled
boolean cookiesDisabledNotificationEnabled
cookiesDisabledCaption
String cookiesDisabledCaption
cookiesDisabledMessage
String cookiesDisabledMessage
newUser
Object newUser
- New user of the application.
prevUser
Object prevUser
- Previous user of the application.
window
Window window
window
Window window
source
Buffered source
- Source class implementing the buffered interface
causes
Throwable[] causes
- Original cause of the source exception
causes
Validator.InvalidValueException[] causes
- Array of one or more validation errors that are causing this
validation error.
Package com.vaadin.data.util |
beanIdResolver
AbstractBeanContainer.BeanIdResolver<IDTYPE,BEANTYPE> beanIdResolver
- The resolver that finds the item ID for a bean, or null not to use
automatic resolving.
Methods that add a bean without specifying an ID must not be called if no
resolver has been set.
itemIdToItem
Map<K,V> itemIdToItem
- Maps all item ids in the container (including filtered) to their
corresponding BeanItem.
type
Class<T> type
- The type of the beans in the container.
model
LinkedHashMap<K,V> model
- A description of the properties found in beans of type
AbstractBeanContainer.type
.
Determines the property ids that are present in the container.
propertyId
Object propertyId
propertySetChangeListeners
Collection<E> propertySetChangeListeners
- List of all Property set change event listeners.
itemSetChangeListeners
Collection<E> itemSetChangeListeners
- List of all container Item set change event listeners.
allItemIds
List<E> allItemIds
- An ordered
List
of all item identifiers in the container,
including those that have been filtered out.
Must not be null.
filteredItemIds
List<E> filteredItemIds
- An ordered
List
of item identifiers in the container after
filtering, excluding those that have been filtered out.
This is what the external API of the Container
interface and its
subinterfaces shows (e.g. AbstractInMemoryContainer.size()
, AbstractInMemoryContainer.nextItemId(Object)
).
If null, the full item id list is used instead.
filters
Set<E> filters
- Filters that are applied to the container to limit the items visible in
it
itemSorter
ItemSorter itemSorter
- The item sorter which is used for sorting the container.
readOnlyStatusChangeListeners
LinkedList<E> readOnlyStatusChangeListeners
- List of listeners who are interested in the read-only status changes of
the Property
valueChangeListeners
LinkedList<E> valueChangeListeners
- List of listeners who are interested in the value changes of the Property
readOnly
boolean readOnly
- Is the Property read-only?
bean
Object bean
- The bean which this Item is based on.
container
Container container
- The wrapped container
noChildrenAllowed
HashSet<E> noChildrenAllowed
- Set of IDs of those contained Items that can't have children.
parent
Hashtable<K,V> parent
- Mapping from Item ID to parent Item ID
children
Hashtable<K,V> children
- Mapping from Item ID to a list of child IDs
roots
LinkedHashSet<E> roots
- List that contains all root elements of the container.
hierarchical
boolean hierarchical
- Is the wrapped container hierarchical by itself ?
container
Container container
- The wrapped container
next
Hashtable<K,V> next
- Ordering information, ie. the mapping from Item ID to the next item ID
prev
Hashtable<K,V> prev
- Reverse ordering information for convenience and performance reasons.
first
Object first
- ID of the first Item in the container.
last
Object last
- ID of the last Item in the container.
ordered
boolean ordered
- Is the wrapped container ordered by itself, ie. does it implement the
Container.Ordered interface by itself? If it does, this class will use
the methods of the underlying container directly.
lastKnownSize
int lastKnownSize
- The last known size of the wrapped container. Used to check whether items
have been added or removed to the wrapped container, when the wrapped
container does not send ItemSetChangeEvents.
sortPropertyIds
Object[] sortPropertyIds
sortDirections
boolean[] sortDirections
container
Container container
propertyValueComparator
Comparator<T> propertyValueComparator
roots
File[] roots
filter
FilenameFilter filter
recursive
boolean recursive
filter
String filter
file
File file
- The wrapped file.
noChildrenAllowed
HashSet<E> noChildrenAllowed
- Set of IDs of those contained Items that can't have children.
parent
HashMap<K,V> parent
- Mapping from Item ID to parent Item ID.
filteredParent
HashMap<K,V> filteredParent
- Mapping from Item ID to parent Item ID for items included in the filtered
container.
children
HashMap<K,V> children
- Mapping from Item ID to a list of child IDs.
filteredChildren
HashMap<K,V> filteredChildren
- Mapping from Item ID to a list of child IDs when filtered
roots
LinkedList<E> roots
- List that contains all root elements of the container.
filteredRoots
LinkedList<E> filteredRoots
- List that contains all filtered root elements of the container.
includeParentsWhenFiltering
boolean includeParentsWhenFiltering
- Determines how filtering of the container is done.
contentChangedEventsDisabledCount
int contentChangedEventsDisabledCount
- Counts how many nested contents change disable calls are in progress.
Pending events are only fired when the counter reaches zero again.
contentsChangedEventPending
boolean contentsChangedEventPending
filterOverride
Set<E> filterOverride
propertyIds
ArrayList<E> propertyIds
- Linked list of ordered Property IDs.
types
Hashtable<K,V> types
- Property ID to type mapping.
items
Hashtable<K,V> items
- Hash of Items, where each Item is implemented as a mapping from Property
ID to Property value.
readOnlyProperties
HashSet<E> readOnlyProperties
- Set of properties that are read-only.
propertyValueChangeListeners
LinkedList<E> propertyValueChangeListeners
- List of all Property value change event listeners listening all the
properties.
singlePropertyValueChangeListeners
Hashtable<K,V> singlePropertyValueChangeListeners
- Data structure containing all listeners interested in changes to single
Properties. The data structure is a hashtable mapping Property IDs to a
hashtable that maps Item IDs to a linked list of listeners listening
Property identified by given Property ID and Item ID.
defaultPropertyValues
HashMap<K,V> defaultPropertyValues
nextGeneratedItemId
int nextGeneratedItemId
addedItemIndex
int addedItemIndex
itemSet
HashSet<E> itemSet
duplicates
HashMap<K,V> duplicates
- Contains a map from an element to the number of duplicates it has. Used
to temporarily allow duplicates in the list.
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
setArgumentIndex
int setArgumentIndex
- Index of the new value in the argument list for the setter method. If the
setter method requires several parameters, this index tells which one is
the actual value to change.
property
Property property
- The method property from which the exception originates from
cause
Throwable cause
- Cause of the method exception
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
name
String name
propertyType
Class<T> propertyType
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
propertyName
String propertyName
instance
Object instance
- Bean instance used as a starting point for accessing the property value.
type
Class<T> type
name
String name
propertyType
Class<T> propertyType
value
Object value
- The value contained by the Property.
type
Class<T> type
- Data type of the Property's value.
dataSource
Property dataSource
- Datasource that stores the actual value.
map
HashMap<K,V> map
- Mapping from property id to property.
list
LinkedList<E> list
- List of all property ids to maintain the order.
propertySetChangeListeners
LinkedList<E> propertySetChangeListeners
- List of property set modification listeners.
resultSetType
int resultSetType
- Deprecated.
resultSetConcurrency
int resultSetConcurrency
- Deprecated.
queryStatement
String queryStatement
- Deprecated.
connection
Connection connection
- Deprecated.
result
ResultSet result
- Deprecated.
propertyIds
Collection<E> propertyIds
- Deprecated.
propertyTypes
HashMap<K,V> propertyTypes
- Deprecated.
size
int size
- Deprecated.
statement
Statement statement
- Deprecated.
file
File file
charset
Charset charset
Package com.vaadin.data.util.filter |
filters
Collection<E> filters
propertyId
Object propertyId
startValue
Comparable<T> startValue
endValue
Comparable<T> endValue
propertyId
Object propertyId
operation
Compare.Operation operation
value
Object value
propertyId
Object propertyId
propertyId
Object propertyId
value
String value
caseSensitive
boolean caseSensitive
filter
Container.Filter filter
propertyId
Object propertyId
filterString
String filterString
ignoreCase
boolean ignoreCase
onlyMatchPrefix
boolean onlyMatchPrefix
Package com.vaadin.data.util.sqlcontainer |
serialVersionUID: -3694463129581802457L
owner
RowItem owner
propertyId
String propertyId
readOnly
boolean readOnly
allowReadOnlyChange
boolean allowReadOnlyChange
nullable
boolean nullable
value
Object value
changedValue
Object changedValue
type
Class<T> type
modified
boolean modified
versionColumn
boolean versionColumn
primaryKey
boolean primaryKey
rowId
RowId rowId
serialVersionUID: -2626764781642012467L
rowNum
Integer rowNum
serialVersionUID: -3161778404698901258L
id
Object[] id
serialVersionUID: -6228966439127951408L
container
SQLContainer container
id
RowId id
properties
Collection<E> properties
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
delegate
QueryDelegate delegate
- Query delegate
autoCommit
boolean autoCommit
- Auto commit mode, default = false
pageLength
int pageLength
- Page length = number of items contained in one page
itemIndexes
Map<K,V> itemIndexes
- Item and index caches
cachedItems
com.vaadin.data.util.sqlcontainer.CacheMap<K,V> cachedItems
propertyIds
List<E> propertyIds
- Container properties = column names, data types and statuses
propertyTypes
Map<K,V> propertyTypes
propertyReadOnly
Map<K,V> propertyReadOnly
propertyPersistable
Map<K,V> propertyPersistable
propertyNullable
Map<K,V> propertyNullable
propertyPrimaryKey
Map<K,V> propertyPrimaryKey
filters
List<E> filters
- Filters (WHERE) and sorters (ORDER BY)
sorters
List<E> sorters
size
int size
- Total number of items available in the data source using the current
query, filters and sorters.
sizeValidMilliSeconds
int sizeValidMilliSeconds
- Size updating logic. Do not update size from data source if it has been
updated in the last sizeValidMilliSeconds milliseconds.
sizeDirty
boolean sizeDirty
sizeUpdated
Date sizeUpdated
currentOffset
int currentOffset
- Starting row number of the currently fetched page
itemSetChangeListeners
LinkedList<E> itemSetChangeListeners
- ItemSetChangeListeners
removedItems
Map<K,V> removedItems
- Temporary storage for modified items and items to be removed and added
addedItems
List<E> addedItems
modifiedItems
List<E> modifiedItems
references
Map<K,V> references
- List of references to other SQLContainers
notificationsEnabled
boolean notificationsEnabled
- Cache flush notification system enabled. Disabled by default.
serialVersionUID: -641983830469018329L
Package com.vaadin.data.util.sqlcontainer.connection |
dataSourceJndiName
String dataSourceJndiName
dataSource
DataSource dataSource
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
initialConnections
int initialConnections
maxConnections
int maxConnections
driverName
String driverName
connectionUri
String connectionUri
userName
String userName
password
String password
initialized
boolean initialized
Package com.vaadin.data.util.sqlcontainer.query |
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
delegate
FreeformQueryDelegate delegate
queryString
String queryString
primaryKeyColumns
List<E> primaryKeyColumns
column
String column
isAscending
boolean isAscending
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Custom writeObject to call rollback() if object is serialized.
- Throws:
IOException
tableName
String tableName
- Table name, primary key column name(s) and version column name
primaryKeyColumns
List<E> primaryKeyColumns
versionColumn
String versionColumn
filters
List<E> filters
- Currently set Filters and OrderBys
orderBys
List<E> orderBys
sqlGenerator
SQLGenerator sqlGenerator
- SQLGenerator instance to use for generating queries
rowIdChangeListeners
LinkedList<E> rowIdChangeListeners
- Row ID change listeners
bufferedEvents
List<E> bufferedEvents
- Row ID change events, stored until commit() is called
debug
boolean debug
- Set to true to output generated SQL Queries to System.out
oldId
RowId oldId
newId
RowId newId
Package com.vaadin.data.util.sqlcontainer.query.generator |
statementHelperClass
Class<T> statementHelperClass
queryString
String queryString
parameters
List<E> parameters
dataTypes
Map<K,V> dataTypes
Package com.vaadin.data.util.sqlcontainer.query.generator.filter |
quoteStart
String quoteStart
quoteEnd
String quoteEnd
Package com.vaadin.data.validator |
errorMessage
String errorMessage
- Error message that is included in an
InvalidValueException
if
such is thrown.
mode
int mode
- Operation mode.
validators
List<E> validators
- List of contained validators.
onlyNullAllowed
boolean onlyNullAllowed
errorMessage
String errorMessage
pattern
Pattern pattern
complete
boolean complete
minLength
int minLength
maxLength
int maxLength
allowNull
boolean allowNull
caption
String caption
- Action title.
icon
Resource icon
- Action icon.
serialVersionUID: 1641868163608066491L
ownActions
HashSet<E> ownActions
- List of action handlers. Guaranteed to keep the original insertion order.
actionHandlers
HashSet<E> actionHandlers
- List of action handlers. Guaranteed to keep the original insertion order.
actionMapper
KeyMapper actionMapper
- Action mapper
viewer
Component viewer
clientHasActions
boolean clientHasActions
listenerList
LinkedHashSet<E> listenerList
- List of registered listeners.
item
Item item
itemId
Object itemId
propertyId
Object propertyId
clickedComponent
Component clickedComponent
childComponent
Component childComponent
readObject
private void readObject(ObjectInputStream in)
throws IOException,
ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
eventType
Class<T> eventType
- Type of the event that should trigger this listener. Also the subclasses
of this class are accepted to trigger the listener.
target
Object target
- The object containing the trigger method.
arguments
Object[] arguments
- Optional argument set to pass to the trigger method.
eventArgumentIndex
int eventArgumentIndex
- Optional index to
arguments
that point out which one should
be replaced with the triggering event object and thus be passed to the
trigger method.
details
MouseEventDetails details
keyCode
int keyCode
modifiers
int[] modifiers
serialVersionUID: 1L
rawVariables
Map<K,V> rawVariables
sourceComponent
Component sourceComponent
Package com.vaadin.event.dd |
transferable
Transferable transferable
dropTargetDetails
TargetDetails dropTargetDetails
data
HashMap<K,V> data
dropTarget
DropTarget dropTarget
Package com.vaadin.event.dd.acceptcriteria |
serialVersionUID: 7406683402153141461L
serialVersionUID: -5242574480825471748L
criteria
ClientSideCriterion[] criteria
dataFlavorId
String dataFlavorId
serialVersionUID: 1131422338558613244L
acceptCriterion
AcceptCriterion acceptCriterion
serialVersionUID: 1L
criteria
AcceptCriterion[] criteria
serialVersionUID: 2128510128911628902L
components
Component[] components
serialVersionUID: -451399314705532584L
serialVersionUID: 763165450054331246L
propertyName
String propertyName
value
Object value
Package com.vaadin.service |
Package com.vaadin.terminal |
bufferSize
int bufferSize
- Default buffer size for this stream resource.
cacheTime
long cacheTime
- Default cache time for this stream resource.
associatedClass
Class<T> associatedClass
- Associated class used for indetifying the source of the resource.
resourceName
String resourceName
- Name of the resource is relative to the associated class.
application
Application application
- Application used for serving the class.
errors
List<E> errors
- Array of all the errors.
level
int level
- Level of the error.
stream
InputStream stream
contentType
String contentType
fileName
String fileName
params
Map<K,V> params
cacheTime
long cacheTime
bufferSize
int bufferSize
sourceURL
String sourceURL
- Url of the download.
mimeType
String mimeType
- MIME Type for the resource
bufferSize
int bufferSize
- Default buffer size for this stream resource.
sourceFile
File sourceFile
- File where the downloaded content is fetched from.
application
Application application
- Application.
cacheTime
long cacheTime
- Default cache time for this stream resource.
lastKey
int lastKey
objectKeyMap
Hashtable<K,V> objectKeyMap
keyObjectMap
Hashtable<K,V> keyObjectMap
streamSource
StreamResource.StreamSource streamSource
- Source stream the downloaded content is fetched from.
MIMEType
String MIMEType
- Explicit mime-type.
filename
String filename
- Filename.
application
Application application
- Application.
bufferSize
int bufferSize
- Default buffer size for this stream resource.
cacheTime
long cacheTime
- Default cache time for this stream resource.
cause
Throwable cause
- The cause of the system error. The cause is stored separately as JDK 1.3
does not support causes natively.
resourceID
String resourceID
- Id of the terminal managed resource.
mode
int mode
- Content mode.
msg
String msg
- Message in content mode.
level
int level
- Error level.
Package com.vaadin.terminal.gwt.client |
button
int button
clientX
int clientX
clientY
int clientY
altKey
boolean altKey
ctrlKey
boolean ctrlKey
metaKey
boolean metaKey
shiftKey
boolean shiftKey
type
int type
relativeX
int relativeX
relativeY
int relativeY
isGecko
boolean isGecko
isWebKit
boolean isWebKit
isPresto
boolean isPresto
isTrident
boolean isTrident
isSafari
boolean isSafari
isChrome
boolean isChrome
isFirefox
boolean isFirefox
isOpera
boolean isOpera
isIE
boolean isIE
os
VBrowserDetails.OperatingSystem os
browserEngineVersion
float browserEngineVersion
browserMajorVersion
int browserMajorVersion
browserMinorVersion
int browserMinorVersion
osMajorVersion
int osMajorVersion
osMinorVersion
int osMinorVersion
Package com.vaadin.terminal.gwt.client.ui |
bitMask
int bitMask
Package com.vaadin.terminal.gwt.server |
throwable
Throwable throwable
applicationProperties
Properties applicationProperties
productionMode
boolean productionMode
resourcePath
String resourcePath
resourceCacheTime
int resourceCacheTime
owner
ParameterHandler owner
throwable
Throwable throwable
throwable
Throwable throwable
owner
URIHandler owner
throwable
Throwable throwable
currentlyOpenWindowsInClient
HashMap<K,V> currentlyOpenWindowsInClient
dirtyPaintables
ArrayList<E> dirtyPaintables
paintableIdMap
HashMap<K,V> paintableIdMap
idPaintableMap
HashMap<K,V> idPaintableMap
idSequence
int idSequence
application
Application application
closingWindowName
String closingWindowName
locales
List<E> locales
pendingLocalesIndex
int pendingLocalesIndex
timeoutInterval
int timeoutInterval
dragAndDropService
DragAndDropService dragAndDropService
requestThemeName
String requestThemeName
maxInactiveInterval
int maxInactiveInterval
productionMode
boolean productionMode
highLightedPaintable
Paintable highLightedPaintable
typeToKey
HashMap<K,V> typeToKey
nextTypeKey
int nextTypeKey
throwable
Throwable throwable
owner
URIHandler owner
throwable
Throwable throwable
listeners
Collection<E> listeners
applications
HashSet<E> applications
browser
WebBrowser browser
applicationToAjaxAppMgrMap
HashMap<K,V> applicationToAjaxAppMgrMap
totalSessionTime
long totalSessionTime
lastRequestTime
long lastRequestTime
app
String app
style
String style
portletWidgetset
String portletWidgetset
defaultPackages
String[] defaultPackages
- The name of the application class currently used. Only valid within one
request.
request
ThreadLocal<T> request
applicationClass
Class<T> applicationClass
throwable
Throwable throwable
component
Component component
variableChanges
Map<K,V> variableChanges
pidToNameToStreamVariable
Map<K,V> pidToNameToStreamVariable
streamVariableToSeckey
Map<K,V> streamVariableToSeckey
method
String method
file
String file
className
String className
classNameSimple
String classNameSimple
lineNumber
int lineNumber
component
Component component
invalidHeight
boolean invalidHeight
invalidWidth
boolean invalidWidth
subErrors
Vector<E> subErrors
lastVisitId
int lastVisitId
lastVisitAccepted
boolean lastVisitAccepted
dragEvent
DragAndDropEvent dragEvent
manager
AbstractCommunicationManager manager
acceptCriterion
AcceptCriterion acceptCriterion
mOpenTags
Stack<E> mOpenTags
openJsonTags
Stack<E> openJsonTags
uidlBuffer
PrintWriter uidlBuffer
closed
boolean closed
manager
AbstractCommunicationManager manager
changes
int changes
usedResources
Set<E> usedResources
customLayoutArgumentsOpen
boolean customLayoutArgumentsOpen
tag
com.vaadin.terminal.gwt.server.JsonPaintTarget.JsonTag tag
errorsOpen
int errorsOpen
cacheEnabled
boolean cacheEnabled
paintedComponents
Collection<E> paintedComponents
identifiersCreatedDueRefPaint
Collection<E> identifiersCreatedDueRefPaint
usedPaintableTypes
Collection<E> usedPaintableTypes
portletListeners
Map<K,V> portletListeners
portletToApplication
Map<K,V> portletToApplication
portletListeners
Map<K,V> portletListeners
portletWindowIdToApplicationMap
HashMap<K,V> portletWindowIdToApplicationMap
eventActionDestinationMap
Map<K,V> eventActionDestinationMap
eventActionValueMap
Map<K,V> eventActionValueMap
sharedParameterActionNameMap
Map<K,V> sharedParameterActionNameMap
sharedParameterActionValueMap
Map<K,V> sharedParameterActionValueMap
productionMode
boolean productionMode
ownerToNameToStreamVariable
Map<K,V> ownerToNameToStreamVariable
requestStartTime
long requestStartTime
cause
Throwable cause
- Cause of the method exception
screenHeight
int screenHeight
screenWidth
int screenWidth
browserApplication
String browserApplication
locale
Locale locale
address
String address
secureConnection
boolean secureConnection
timezoneOffset
int timezoneOffset
rawTimezoneOffset
int rawTimezoneOffset
dstSavings
int dstSavings
dstInEffect
boolean dstInEffect
touchDevice
boolean touchDevice
browserDetails
VBrowserDetails browserDetails
clientServerTimeDelta
long clientServerTimeDelta
components
Collection<E> components
componentToCoordinates
Map<K,V> componentToCoordinates
zIndex
int zIndex
topValue
Float topValue
rightValue
Float rightValue
bottomValue
Float bottomValue
leftValue
Float leftValue
topUnits
int topUnits
rightUnits
int rightUnits
bottomUnits
int bottomUnits
leftUnits
int leftUnits
styles
ArrayList<E> styles
- Style names.
caption
String caption
- Caption text.
applicationData
Object applicationData
- Application specific data object. The component does not use or modify
this.
icon
Resource icon
- Icon to be shown together with caption.
enabled
boolean enabled
- Is the component enabled (its normal usage is allowed).
visible
boolean visible
- Is the component visible (it is rendered).
readOnly
boolean readOnly
- Is the component read-only ?
description
String description
- Description of the usage (XML).
parent
Component parent
- The container this component resides in.
eventRouter
EventRouter eventRouter
- The EventRouter used for the event model.
eventIdentifiers
Set<E> eventIdentifiers
- A set of event identifiers with registered listeners.
componentError
ErrorMessage componentError
- The internal error message of the component.
immediate
boolean immediate
- Immediate mode: if true, all variable changes are required to be sent
from the terminal immediately.
locale
Locale locale
- Locale of this component.
delayedFocus
boolean delayedFocus
- The component should receive focus (if
Focusable
) when attached.
repaintRequestListeners
LinkedList<E> repaintRequestListeners
- List of repaint request listeners or null if not listened at all.
repaintRequestListenersNotified
boolean repaintRequestListenersNotified
- Are all the repaint listeners notified about recent changes ?
testingId
String testingId
width
float width
height
float height
widthUnit
int widthUnit
heightUnit
int heightUnit
errorHandler
AbstractComponent.ComponentErrorHandler errorHandler
value
Object value
- Value of the abstract field.
dataSource
Property dataSource
- Connected data-source.
validators
LinkedList<E> validators
- The list of validators.
writeThroughMode
boolean writeThroughMode
- Auto commit mode.
readThroughMode
boolean readThroughMode
- Reads the value from data-source, when it is not modified.
modified
boolean modified
- Is the field modified but not committed.
committingValueToDataSource
boolean committingValueToDataSource
- Flag to indicate that the field is currently committing its value to the
datasource.
currentBufferedSourceException
Buffered.SourceException currentBufferedSourceException
- Current source exception.
invalidAllowed
boolean invalidAllowed
- Are the invalid values allowed in fields ?
invalidCommitted
boolean invalidCommitted
- Are the invalid values committed ?
tabIndex
int tabIndex
- The tab order number of this field.
required
boolean required
- Required field.
requiredError
String requiredError
- The error message for the exception that is thrown when the field is
required but empty.
validationVisible
boolean validationVisible
- Is automatic validation enabled.
actionManager
ActionManager actionManager
- Keeps track of the Actions added to this component; the actual
handling/notifying is delegated, usually to the containing window.
valueWasModifiedByDataSourceDuringCommit
boolean valueWasModifiedByDataSourceDuringCommit
isListeningToPropertyEvents
boolean isListeningToPropertyEvents
- Whether this field is currently registered as listening to events from
its data source.
- See Also:
AbstractField.setPropertyDataSource(Property)
,
AbstractField.addPropertyListeners()
,
AbstractField.removePropertyListeners()
focusable
Component.Focusable focusable
margins
Layout.MarginInfo margins
sources
List<E> sources
showControls
boolean showControls
altText
String altText
htmlContentAllowed
boolean htmlContentAllowed
autoplay
boolean autoplay
muted
boolean muted
pause
boolean pause
play
boolean play
components
LinkedList<E> components
- Custom layout slots containing the components.
componentToAlignment
Map<K,V> componentToAlignment
- Mapping from components to alignments (horizontal + vertical).
componentToExpandRatio
Map<K,V> componentToExpandRatio
spacing
boolean spacing
- Is spacing between contained components enabled. Defaults to false.
multiSelect
boolean multiSelect
- Is the select in multiselect mode?
items
Container items
- Select options.
allowNewOptions
boolean allowNewOptions
- Is the user allowed to add new options?
itemIdMapper
KeyMapper itemIdMapper
- Keymapper used to map key values.
itemIcons
HashMap<K,V> itemIcons
- Item icons.
itemCaptions
HashMap<K,V> itemCaptions
- Item captions.
itemCaptionMode
int itemCaptionMode
- Item caption mode.
itemCaptionPropertyId
Object itemCaptionPropertyId
- Item caption source property id.
itemIconPropertyId
Object itemIconPropertyId
- Item icon source property id.
propertySetEventListeners
Set<E> propertySetEventListeners
- List of property set change event listeners.
itemSetEventListeners
Set<E> itemSetEventListeners
- List of item set change event listeners.
nullSelectionItemId
Object nullSelectionItemId
- Item id that represents null selection of this select.
Data interface does not support nulls as item ids. Selecting the item
identified by this id is the same as selecting no items at all. This
setting only affects the single select mode.
nullSelectionAllowed
boolean nullSelectionAllowed
newItemHandler
AbstractSelect.NewItemHandler newItemHandler
captionChangeListener
AbstractSelect.CaptionChangeListener captionChangeListener
idOver
Object idOver
- The item id over which the drag event happened.
captionChangeNotifiers
HashSet<E> captionChangeNotifiers
firstComponent
Component firstComponent
secondComponent
Component secondComponent
pos
float pos
posUnit
int posUnit
posReversed
boolean posReversed
posMin
float posMin
posMinUnit
int posMinUnit
posMax
float posMax
posMaxUnit
int posMaxUnit
locked
boolean locked
format
Format format
- Deprecated.
- Value formatter used to format the string contents.
nullRepresentation
String nullRepresentation
- Null representation.
nullSettingAllowed
boolean nullSettingAllowed
- Is setting to null from non-null value allowed by setting with null
representation .
maxLength
int maxLength
- Maximum character count in text field.
columns
int columns
- Number of visible columns in the TextField.
inputPrompt
String inputPrompt
- The prompt to display in an empty field. Null when disabled.
lastKnownTextContent
String lastKnownTextContent
- The text content when the last messages to the server was sent. Cleared
when value is changed.
lastKnownCursorPosition
int lastKnownCursorPosition
- The position of the cursor when the last message to the server was sent.
textChangeEventPending
boolean textChangeEventPending
- Flag indicating that a text change event is pending to be triggered.
Cleared by
AbstractTextField.setInternalValue(Object)
and when the event is fired.
isFiringTextChangeEvent
boolean isFiringTextChangeEvent
textChangeEventMode
AbstractTextField.TextChangeEventMode textChangeEventMode
DEFAULT_TEXTCHANGE_TIMEOUT
int DEFAULT_TEXTCHANGE_TIMEOUT
textChangeEventTimeout
int textChangeEventTimeout
selectionPosition
int selectionPosition
- Temporarily holds the new selection position. Cleared on paint.
selectionLength
int selectionLength
- Temporarily holds the new selection length.
changingVariables
boolean changingVariables
- Flag used to determine whether we are currently handling a state change
triggered by a user. Used to properly fire text change event before value
change event triggered by the client side.
curText
String curText
cursorPosition
int cursorPosition
bitMask
int bitMask
switchMode
boolean switchMode
disableOnClick
boolean disableOnClick
htmlContentAllowed
boolean htmlContentAllowed
- If caption is rendered as HTML
clickShortcut
Button.ClickShortcut clickShortcut
details
MouseEventDetails details
button
Button button
inputPrompt
String inputPrompt
textInputAllowed
boolean textInputAllowed
- If text input is not allowed, the ComboBox behaves like a pretty
NativeSelect - the user can not enter any text and clicking the text
field opens the drop down with options
message
ErrorMessage message
component
Component component
component
Component component
components
LinkedList<E> components
- Custom layout slots containing the components.
root
Component root
- The root component implementing the custom component.
componentType
String componentType
- Type of the component.
slots
HashMap<K,V> slots
- Custom layout slots containing the components.
templateContents
String templateContents
templateName
String templateName
resolution
int resolution
- Specified smallest modifiable unit.
dateFormat
String dateFormat
- Overridden format string
lenient
boolean lenient
dateString
String dateString
uiHasValidDateString
boolean uiHasValidDateString
- Was the last entered string parsable? If this flag is false, datefields
internal validator does not pass.
showISOWeekNumbers
boolean showISOWeekNumbers
- Determines if week numbers are shown in the date selector.
currentParseErrorMessage
String currentParseErrorMessage
defaultParseErrorMessage
String defaultParseErrorMessage
timeZone
TimeZone timeZone
receivers
Map<K,V> receivers
html5DataFlavors
Map<K,V> html5DataFlavors
dragStartMode
DragAndDropWrapper.DragStartMode dragStartMode
dropHandler
DropHandler dropHandler
files
Html5File[] files
type
int type
- Type of the object.
source
Resource source
- Source of the embedded object.
mimeType
String mimeType
- Generic object attributes.
standby
String standby
parameters
Map<K,V> parameters
- Hash of object parameters.
codebase
String codebase
- Applet or other client side runnable properties.
codetype
String codetype
classId
String classId
archive
String archive
altText
String altText
expanded
Component expanded
- Deprecated.
propertyValue
Object propertyValue
layout
Layout layout
- Layout of the form.
itemDatasource
Item itemDatasource
- Item connected to this form as datasource.
propertyIds
LinkedList<E> propertyIds
- Ordered list of property ids in this editor.
currentBufferedSourceException
Buffered.SourceException currentBufferedSourceException
- Current buffered source exception.
writeThrough
boolean writeThrough
- Is the form in write trough mode.
readThrough
boolean readThrough
- Is the form in read trough mode.
fields
HashMap<K,V> fields
- Mapping from propertyName to corresponding field.
ownProperties
HashMap<K,V> ownProperties
- Form may act as an Item, its own properties are stored here.
fieldFactory
FormFieldFactory fieldFactory
- Field factory for this form.
visibleItemProperties
Collection<E> visibleItemProperties
- Visible item properties.
fieldValueChangeListener
Property.ValueChangeListener fieldValueChangeListener
- Form needs to repaint itself if child fields value changes due possible
change in form validity.
TODO introduce ValidityChangeEvent (#6239) and start using it instead.
See e.g. DateField#notifyFormOfValidityChange().
formFooter
Layout formFooter
validationVisibleOnCommit
boolean validationVisibleOnCommit
- If this is true, commit implicitly calls setValidationVisible(true).
gridlayoutCursorX
int gridlayoutCursorX
gridlayoutCursorY
int gridlayoutCursorY
ownActionManager
ActionManager ownActionManager
- Keeps track of the Actions added to this component, and manages the
painting and handling as well. Note that the extended AbstractField is a
Action.ShortcutNotifier
and has a actionManager that delegates actions
to the containing window. This one does not delegate.
cols
int cols
- Initial grid columns.
rows
int rows
- Initial grid rows.
cursorX
int cursorX
- Cursor X position: this is where the next component with unspecified x,y
is inserted
cursorY
int cursorY
- Cursor Y position: this is where the next component with unspecified x,y
is inserted
areas
LinkedList<E> areas
- Contains all items that are placed on the grid. These are components with
grid area definition.
components
LinkedList<E> components
- Mapping from components to their respective areas.
componentToAlignment
Map<K,V> componentToAlignment
- Mapping from components to alignments (horizontal + vertical).
spacing
boolean spacing
- Is spacing between contained components enabled. Defaults to false.
structuralChange
boolean structuralChange
- Has there been rows inserted or deleted in the middle of the layout since
the last paint operation.
columnExpandRatio
Map<K,V> columnExpandRatio
rowExpandRatio
Map<K,V> rowExpandRatio
column1
int column1
- The column of the upper left corner cell of the area.
row1
int row1
- The row of the upper left corner cell of the area.
column2
int column2
- The column of the lower right corner cell of the area.
row2
int row2
- The row of the lower right corner cell of the area.
component
Component component
- Component painted in the area.
areaOutOfBounds
GridLayout.Area areaOutOfBounds
existingArea
GridLayout.Area existingArea
name
String name
size
long size
streamVariable
StreamVariable streamVariable
type
String type
dataSource
Property dataSource
contentMode
int contentMode
resource
Resource resource
targetName
String targetName
targetBorder
int targetBorder
targetWidth
int targetWidth
targetHeight
int targetHeight
columns
int columns
rows
int rows
usernameCaption
String usernameCaption
passwordCaption
String passwordCaption
loginButtonCaption
String loginButtonCaption
iframe
Embedded iframe
loginPage
ApplicationResource loginPage
paramHandler
ParameterHandler paramHandler
uriHandler
URIHandler uriHandler
window
Window window
params
Map<K,V> params
menuItems
List<E> menuItems
numberOfItems
int numberOfItems
collapseItems
boolean collapseItems
- Deprecated.
- See Also:
MenuBar.setCollapse(boolean)
submenuIcon
Resource submenuIcon
- Deprecated.
- See Also:
MenuBar.setSubmenuIcon(Resource)
moreItem
MenuBar.MenuItem moreItem
openRootOnHover
boolean openRootOnHover
htmlContentAllowed
boolean htmlContentAllowed
itsId
int itsId
- Private members *
itsCommand
MenuBar.Command itsCommand
itsText
String itsText
itsChildren
List<E> itsChildren
itsIcon
Resource itsIcon
itsParent
MenuBar.MenuItem itsParent
enabled
boolean enabled
visible
boolean visible
isSeparator
boolean isSeparator
styleName
String styleName
description
String description
checkable
boolean checkable
checked
boolean checked
columns
int columns
disabledItemIds
Set<E> disabledItemIds
htmlContentAllowed
boolean htmlContentAllowed
orientation
int orientation
- Deprecated.
- Orientation of the layout.
content
ComponentContainer content
- Content of the panel.
scrollOffsetX
int scrollOffsetX
- Scroll X position.
scrollOffsetY
int scrollOffsetY
- Scroll Y position.
scrollable
boolean scrollable
- Scrolling mode.
actionManager
ActionManager actionManager
- Keeps track of the Actions added to this component, and manages the
painting and handling as well.
tabIndex
int tabIndex
- By default the Panel is not in the normal document focus flow and can
only be focused by using the focus()-method. Change this to 0 if you want
to have the Panel in the normal focus flow.
inputPrompt
String inputPrompt
content
PopupView.Content content
hideOnMouseOut
boolean hideOnMouseOut
visibleComponent
Component visibleComponent
indeterminate
boolean indeterminate
dataSource
Property dataSource
pollingInterval
int pollingInterval
format
Format format
- Deprecated.
- Value formatter used to format the string contents.
nullRepresentation
String nullRepresentation
- Null representation.
nullSettingAllowed
boolean nullSettingAllowed
- Is setting to null from non-null value allowed by setting with null
representation .
selectAll
boolean selectAll
- Temporary flag that indicates all content will be selected after the next
paint. Reset to false after painted.
pageLength
int pageLength
- Holds value of property pageLength. 0 disables paging.
columns
int columns
currentPage
int currentPage
filteringMode
int filteringMode
filterstring
String filterstring
prevfilterstring
String prevfilterstring
filteredSize
int filteredSize
- Number of options that pass the filter, excluding the null item if any.
filteredOptions
List<E> filteredOptions
- Cache of filtered options, used only by the in-memory filtering system.
optionRequest
boolean optionRequest
- Flag to indicate that request repaint is called by filter request only
isPainting
boolean isPainting
- True while painting to suppress item set change notifications that could
be caused by temporary filtering.
scrollToSelectedItem
boolean scrollToSelectedItem
- Flag to indicate whether to scroll the selected item visible (select the
page on which it is) when opening the popup or not. Only applies to
single select mode.
This requires finding the index of the item, which can be expensive in
many large lazy loading containers.
min
double min
- Minimum value of slider
max
double max
- Maximum value of slider
resolution
int resolution
- Resolution, how many digits are considered relevant after the decimal
point. Must be a non-negative value
orientation
int orientation
- Slider orientation (horizontal/vertical), defaults .
size
int size
- Deprecated.
- Slider size in pixels. In horizontal mode, if set to -1, allow 100% width
of container. In vertical mode, if set to -1, default height is
determined by the client-side implementation.
handleSize
int handleSize
- Deprecated. The size is dictated by the current theme.
- Handle (draggable control element) size in percents relative to base
size. Must be a value between 1-99. Other values are converted to nearest
bound. A negative value sets the width to auto (client-side
implementation calculates).
arrows
boolean arrows
- Deprecated.
- Show arrows that can be pressed to slide the handle in some increments
(client-side implementation decides the increment, usually somewhere
between 5-10% of slide range).
value
Double value
orientation
int orientation
- Deprecated.
- Orientation of the layout.
columnCollapsingAllowed
boolean columnCollapsingAllowed
- True if column collapsing is allowed.
columnReorderingAllowed
boolean columnReorderingAllowed
- True if reordering of columns is allowed on the client side.
columnIdMap
KeyMapper columnIdMap
- Keymapper for column ids.
visibleColumns
LinkedList<E> visibleColumns
- Holds visible column propertyIds - in order.
noncollapsibleColumns
HashSet<E> noncollapsibleColumns
- Holds noncollapsible columns.
collapsedColumns
HashSet<E> collapsedColumns
- Holds propertyIds of currently collapsed columns.
columnHeaders
HashMap<K,V> columnHeaders
- Holds headers for visible columns (by propertyId).
columnFooters
HashMap<K,V> columnFooters
- Holds footers for visible columns (by propertyId).
columnIcons
HashMap<K,V> columnIcons
- Holds icons for visible columns (by propertyId).
columnAlignments
HashMap<K,V> columnAlignments
- Holds alignments for visible columns (by propertyId).
columnWidths
HashMap<K,V> columnWidths
- Holds column widths in pixels for visible columns (by propertyId).
columnExpandRatios
HashMap<K,V> columnExpandRatios
- Holds column expand rations for visible columns (by propertyId).
columnGenerators
HashMap<K,V> columnGenerators
- Holds column generators
pageLength
int pageLength
- Holds value of property pageLength. 0 disables paging.
currentPageFirstItemId
Object currentPageFirstItemId
- Id the first item on the current page.
currentPageFirstItemIndex
int currentPageFirstItemIndex
- Index of the first item on the current page.
currentPageFirstItemIndexOnLastPage
int currentPageFirstItemIndexOnLastPage
selectable
boolean selectable
- Holds value of property selectable.
changedSelectedKeys
Set<E> changedSelectedKeys
- Holds item keys which have had their selection changed since the previous
burst to client side. This includes removed items as their selection may
have changed on client side before their removal.
columnHeaderMode
int columnHeaderMode
- Holds value of property columnHeaderMode.
columnFootersVisible
boolean columnFootersVisible
- Should the Table footer be visible?
rowCaptionsAreHidden
boolean rowCaptionsAreHidden
- True iff the row captions are hidden.
pageBuffer
Object[][] pageBuffer
- Page contents buffer used in buffered mode.
listenedProperties
HashSet<E> listenedProperties
- Set of properties listened - the list is kept to release the listeners
later.
visibleComponents
HashSet<E> visibleComponents
- Set of visible components - the is used for needsRepaint calculation.
actionHandlers
LinkedList<E> actionHandlers
- List of action handlers.
actionMapper
KeyMapper actionMapper
- Action mapper.
fieldFactory
TableFieldFactory fieldFactory
- Table cell editor factory.
editable
boolean editable
- Is table editable.
sortAscending
boolean sortAscending
- Current sorting direction.
sortContainerPropertyId
Object sortContainerPropertyId
- Currently table is sorted on this propertyId.
sortDisabled
boolean sortDisabled
- Is table sorting disabled alltogether; even if some of the properties
would be sortable.
reqRowsToPaint
int reqRowsToPaint
- Number of rows explicitly requested by the client to be painted on next
paint. This is -1 if no request by the client is made. Painting the
component will automatically reset this to -1.
reqFirstRowToPaint
int reqFirstRowToPaint
- Index of the first rows explicitly requested by the client to be painted.
This is -1 if no request by the client is made. Painting the component
will automatically reset this to -1.
firstToBeRenderedInClient
int firstToBeRenderedInClient
lastToBeRenderedInClient
int lastToBeRenderedInClient
isContentRefreshesEnabled
boolean isContentRefreshesEnabled
pageBufferFirstIndex
int pageBufferFirstIndex
containerChangeToBeRendered
boolean containerChangeToBeRendered
cellStyleGenerator
Table.CellStyleGenerator cellStyleGenerator
- Table cell specific style generator
itemDescriptionGenerator
AbstractSelect.ItemDescriptionGenerator itemDescriptionGenerator
- Table cell specific tooltip generator
alwaysRecalculateColumnWidths
boolean alwaysRecalculateColumnWidths
cacheRate
double cacheRate
dragMode
Table.TableDragMode dragMode
dropHandler
DropHandler dropHandler
multiSelectMode
AbstractSelect.MultiSelectMode multiSelectMode
rowCacheInvalidated
boolean rowCacheInvalidated
rowGenerator
Table.RowGenerator rowGenerator
associatedProperties
Map<K,V> associatedProperties
painted
boolean painted
keyMapperReset
boolean keyMapperReset
- Set to true if the client-side should be informed that the key mapper has
been reset so it can avoid sending back references to keys that are no
longer present.
exceptionsDuringCachePopulation
List<E> exceptionsDuringCachePopulation
causes
Throwable[] causes
table
Table table
previousWidth
int previousWidth
currentWidth
int currentWidth
columnPropertyId
Object columnPropertyId
columnPropertyId
Object columnPropertyId
htmlContentAllowed
boolean htmlContentAllowed
spanColumns
boolean spanColumns
text
String[] text
columnPropertyId
Object columnPropertyId
table
Table table
allowedItemIds
Set<E> allowedItemIds
components
ArrayList<E> components
- List of component tabs (tab contents). In addition to being on this list,
there is a
TabSheet.Tab
object in tabs for each tab with meta-data about
the tab.
tabs
HashMap<K,V> tabs
- Map containing information related to the tabs (caption, icon etc).
selected
Component selected
- Selected tab content component.
keyMapper
KeyMapper keyMapper
- Mapper between server-side component instances (tab contents) and keys
given to the client that identify tabs.
tabsHidden
boolean tabsHidden
- When true, the tab selection area is not displayed to the user.
paintedTabs
HashSet<E> paintedTabs
- Tabs that have been shown to the user (have been painted as selected).
closeHandler
TabSheet.CloseHandler closeHandler
- Handler to be called when a tab is closed.
tabIndex
int tabIndex
caption
String caption
icon
Resource icon
enabled
boolean enabled
visible
boolean visible
closable
boolean closable
description
String description
componentError
ErrorMessage componentError
styleName
String styleName
rows
int rows
- Number of visible rows in the text area.
wordwrap
boolean wordwrap
- Tells if word-wrapping should be used in the text area.
secret
boolean secret
- Deprecated.
- Tells if input is used to enter sensitive information that is not echoed
to display. Typically passwords.
rows
int rows
- Deprecated.
- Number of visible rows in a multiline TextField. Value 0 implies a
single-line text-editor.
wordwrap
boolean wordwrap
- Deprecated.
- Tells if word-wrapping should be used in multiline mode.
expanded
HashSet<E> expanded
- Set of expanded nodes.
actionHandlers
LinkedList<E> actionHandlers
- List of action handlers.
actionMapper
KeyMapper actionMapper
- Action mapper.
selectable
boolean selectable
- Is the tree selectable on the client side.
partialUpdate
boolean partialUpdate
- Flag to indicate sub-tree loading
expandedItemId
Object expandedItemId
- Holds a itemId which was recently expanded
initialPaint
boolean initialPaint
- a flag which indicates initial paint. After this flag set true partial
updates are allowed.
itemDescriptionGenerator
AbstractSelect.ItemDescriptionGenerator itemDescriptionGenerator
- Item tooltip generator
dragMode
Tree.TreeDragMode dragMode
multiSelectMode
AbstractSelect.MultiSelectMode multiSelectMode
itemStyleGenerator
Tree.ItemStyleGenerator itemStyleGenerator
dropHandler
DropHandler dropHandler
collapsedItemId
Object collapsedItemId
expandedItemId
Object expandedItemId
rootId
Object rootId
depthToCheck
int depthToCheck
tree
Tree tree
allowedItemIds
Set<E> allowedItemIds
cStrategy
com.vaadin.ui.TreeTable.ContainerStrategy cStrategy
focusedRowId
Object focusedRowId
hierarchyColumnId
Object hierarchyColumnId
toggledItemId
Object toggledItemId
- The item id that was expanded or collapsed during this request. Reset at
the end of paint and only used for determining if a partial or full paint
should be done.
Can safely be reset to null whenever a change occurs that would prevent a
partial update from rendering the correct result, e.g. rows added or
removed during an expand operation.
animationsEnabled
boolean animationsEnabled
clearFocusedRowPending
boolean clearFocusedRowPending
containerSupportsPartialUpdates
boolean containerSupportsPartialUpdates
- If the container does not send item set change events, always do a full
repaint instead of a partial update when expanding/collapsing nodes.
columns
int columns
rows
int rows
leftColumnCaption
String leftColumnCaption
rightColumnCaption
String rightColumnCaption
focus
boolean focus
- Should the field be focused on next repaint?
tabIndex
int tabIndex
- The tab order number of this field.
receiver
Upload.Receiver receiver
- The output of the upload is redirected to this receiver.
isUploading
boolean isUploading
contentLength
long contentLength
totalBytes
int totalBytes
buttonCaption
String buttonCaption
progressListeners
LinkedHashSet<E> progressListeners
- ProgressListeners to which information about progress is sent during
upload
interrupted
boolean interrupted
notStarted
boolean notStarted
nextid
int nextid
forceSubmit
boolean forceSubmit
- Flag to indicate that submitting file has been requested.
streamVariable
StreamVariable streamVariable
reason
Exception reason
length
long length
- Length of the received file.
type
String type
- MIME type of the received file.
filename
String filename
- Received file name.
filename
String filename
type
String type
length
long length
- Length of the received file.
fragment
String fragment
poster
Resource poster
terminal
Terminal terminal
- Application window only. The user terminal for this window.
application
Application application
- Application window only. The application this window is attached
to or null.
uriHandlerList
LinkedList<E> uriHandlerList
- Application window only. List of URI handlers for this window.
parameterHandlerList
LinkedList<E> parameterHandlerList
- Application window only. List of parameter handlers for this
window.
subwindows
LinkedHashSet<E> subwindows
- Application window only. List of sub windows in this window. A sub
window cannot have other sub windows.
theme
String theme
- Application window only. Explicitly specified theme of this window
or null if the application theme should be used.
openList
LinkedList<E> openList
- Application window only. Resources to be opened automatically on
next repaint. The list is automatically cleared when it has been sent to
the client.
name
String name
- Application window only. Unique name of the window used to
identify it.
border
int border
- Application window only. Border mode of the Window.
positionY
int positionY
- Sub window only. Top offset in pixels for the sub window (relative
to the parent application window) or -1 if unspecified.
positionX
int positionX
- Sub window only. Left offset in pixels for the sub window
(relative to the parent application window) or -1 if unspecified.
notifications
LinkedList<E> notifications
- Application window only. A list of notifications that are waiting
to be sent to the client. Cleared (set to null) when the notifications
have been sent.
modal
boolean modal
- Sub window only. Modality flag for sub window.
resizable
boolean resizable
- Sub window only. Controls if the end user can resize the window.
draggable
boolean draggable
- Sub window only. Controls if the end user can move the window by
dragging.
centerRequested
boolean centerRequested
- Sub window only. Flag which is true if the window is centered on
the screen.
resizeLazy
boolean resizeLazy
- Should resize recalculate layouts lazily (as opposed to immediately)
pendingFocus
Component.Focusable pendingFocus
- Component that should be focused after the next repaint. Null if no focus
change should take place.
jsExecQueue
ArrayList<E> jsExecQueue
- Application window only. A list of javascript commands that are
waiting to be sent to the client. Cleared (set to null) when the commands
have been sent.
scrollIntoView
Component scrollIntoView
- The component that should be scrolled into view after the next repaint.
Null if nothing should be scrolled into view.
browserWindowWidth
int browserWindowWidth
browserWindowHeight
int browserWindowHeight
bringToFront
Integer bringToFront
bringToFrontSequence
int bringToFrontSequence
closeShortcut
Window.CloseShortcut closeShortcut
window
Window window
caption
String caption
description
String description
icon
Resource icon
position
int position
delayMsec
int delayMsec
styleName
String styleName
htmlContentAllowed
boolean htmlContentAllowed
Package com.vaadin.ui.treetable |
hierarchical
Container.Hierarchical hierarchical
Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.