Serialized Form
source
Buffered source
- Source class implementing the buffered interface
causes
java.lang.Throwable[] causes
- Original cause of the source exception
container
Container.Indexed container
activeRowHandler
com.vaadin.data.RpcDataProviderExtension.ActiveRowHandler activeRowHandler
rpc
com.vaadin.shared.data.DataProviderRpc rpc
itemListener
Container.ItemSetChangeListener itemListener
keyMapper
RpcDataProviderExtension.DataProviderKeyMapper keyMapper
columnKeys
KeyMapper<V> columnKeys
refreshCache
boolean refreshCache
- RpcDataProvider should send the current cache again.
rowReference
Grid.RowReference rowReference
cellReference
Grid.CellReference cellReference
updatedItemIds
java.util.Set<E> updatedItemIds
- Set of updated item ids
rowChanges
java.util.List<E> rowChanges
- Queued RPC calls for adding and removing rows. Queue will be handled in
beforeClientResponse
bareItemSetTriggeredSizeChange
boolean bareItemSetTriggeredSizeChange
- Size possibly changed with a bare ItemSetChangeEvent
visibleDetails
java.util.Set<E> visibleDetails
- This map represents all the details that are user-defined as visible.
This does not reflect the status in the DOM.
detailComponentManager
RpcDataProviderExtension.DetailComponentManager detailComponentManager
itemIdToKey
com.google.gwt.thirdparty.guava.common.collect.BiMap<K,V> itemIdToKey
pinnedItemIds
java.util.Set<E> pinnedItemIds
rollingIndex
long rollingIndex
visibleDetailsComponents
java.util.Map<K,V> visibleDetailsComponents
- This map represents all the components that have been requested for
each item id.
Normally this map is consistent with what is displayed in the
component hierarchy (and thus the DOM). The only time this map is out
of sync with the DOM is between the any calls to
RpcDataProviderExtension.DetailComponentManager.createDetails(Object, int)
or
RpcDataProviderExtension.DetailComponentManager.destroyDetails(Object)
, and
GridClientRpc#setDetailsConnectorChanges(Set)
.
This is easily checked: if RpcDataProviderExtension.DetailComponentManager.unattachedComponents
is
empty
, then this field is consistent
with the connector hierarchy.
rowIndexToDetails
com.google.gwt.thirdparty.guava.common.collect.BiMap<K,V> rowIndexToDetails
- A lookup map for which row contains which details component.
prevRowIndexToDetails
com.google.gwt.thirdparty.guava.common.collect.BiMap<K,V> prevRowIndexToDetails
- A copy of
RpcDataProviderExtension.DetailComponentManager.rowIndexToDetails
from its last stable state. Used
for creating a diff against RpcDataProviderExtension.DetailComponentManager.rowIndexToDetails
.
- See Also:
RpcDataProviderExtension.DetailComponentManager.getAndResetConnectorChanges()
unattachedComponents
java.util.Set<E> unattachedComponents
- A set keeping track on components that have been created, but not
attached. They should be attached at some later point in time.
This isn't strictly requried, but it's a handy explicit log. You
could find out the same thing by taking out all the other components
and checking whether Grid is their parent or not.
emptyDetails
java.util.Map<K,V> emptyDetails
- Keeps tabs on all the details that did not get a component during
RpcDataProviderExtension.DetailComponentManager.createDetails(Object, int)
.
grid
Grid grid
causes
Validator.InvalidValueException[] causes
- Array of one or more validation errors that are causing this
validation error.
Package com.vaadin.data.fieldgroup |
beanType
java.lang.Class<T> beanType
defaultValidators
java.util.Map<K,V> defaultValidators
itemDataSource
Item itemDataSource
buffered
boolean buffered
enabled
boolean enabled
readOnly
boolean readOnly
propertyIdToField
java.util.HashMap<K,V> propertyIdToField
fieldToPropertyId
java.util.LinkedHashMap<K,V> fieldToPropertyId
commitHandlers
java.util.List<E> commitHandlers
fieldFactory
FieldGroupFieldFactory fieldFactory
- The field factory used by builder methods.
fieldBinder
FieldGroup fieldBinder
fieldGroup
FieldGroup fieldGroup
invalidValueExceptions
java.util.Map<K,V> invalidValueExceptions
Package com.vaadin.data.sort |
previous
Sort previous
order
SortOrder order
propertyId
java.lang.Object propertyId
direction
com.vaadin.shared.data.sort.SortDirection direction
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
java.util.Map<K,V> itemIdToItem
- Maps all item ids in the container (including filtered) to their
corresponding BeanItem.
type
java.lang.Class<T> type
- The type of the beans in the container.
model
java.util.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
java.lang.Object propertyId
propertySetChangeListeners
java.util.Collection<E> propertySetChangeListeners
- List of all Property set change event listeners.
itemSetChangeListeners
java.util.Collection<E> itemSetChangeListeners
- List of all container Item set change event listeners.
allItemIds
java.util.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
java.util.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
java.util.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
java.util.LinkedList<E> readOnlyStatusChangeListeners
- List of listeners who are interested in the read-only status changes of
the Property
valueChangeListeners
java.util.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
java.lang.Object bean
- The bean which this Item is based on.
container
Container container
- The wrapped container
noChildrenAllowed
java.util.HashSet<E> noChildrenAllowed
- Set of IDs of those contained Items that can't have children.
parent
java.util.Hashtable<K,V> parent
- Mapping from Item ID to parent Item ID
children
java.util.Hashtable<K,V> children
- Mapping from Item ID to a list of child IDs
roots
java.util.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
java.util.Hashtable<K,V> next
- Ordering information, ie. the mapping from Item ID to the next item ID
prev
java.util.Hashtable<K,V> prev
- Reverse ordering information for convenience and performance reasons.
first
java.lang.Object first
- ID of the first Item in the container.
last
java.lang.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
java.lang.Object[] sortPropertyIds
sortDirections
boolean[] sortDirections
container
Container container
propertyValueComparator
java.util.Comparator<T> propertyValueComparator
roots
java.io.File[] roots
filter
java.io.FilenameFilter filter
recursive
boolean recursive
filter
java.lang.String filter
file
java.io.File file
- The wrapped file.
wrappedContainer
Container.Indexed wrappedContainer
propertyGenerators
java.util.Map<K,V> propertyGenerators
activeFilters
java.util.Map<K,V> activeFilters
sortableContainer
Container.Sortable sortableContainer
filterableContainer
Container.Filterable filterableContainer
removedProperties
java.util.Set<E> removedProperties
firstItemId
java.lang.Object firstItemId
firstIndex
int firstIndex
count
int count
item
Item item
itemId
java.lang.Object itemId
propertyId
java.lang.Object propertyId
generator
PropertyValueGenerator<T> generator
wrappedItem
Item wrappedItem
itemId
java.lang.Object itemId
noChildrenAllowed
java.util.HashSet<E> noChildrenAllowed
- Set of IDs of those contained Items that can't have children.
parent
java.util.HashMap<K,V> parent
- Mapping from Item ID to parent Item ID.
filteredParent
java.util.HashMap<K,V> filteredParent
- Mapping from Item ID to parent Item ID for items included in the filtered
container.
children
java.util.HashMap<K,V> children
- Mapping from Item ID to a list of child IDs.
filteredChildren
java.util.HashMap<K,V> filteredChildren
- Mapping from Item ID to a list of child IDs when filtered
roots
java.util.LinkedList<E> roots
- List that contains all root elements of the container.
filteredRoots
java.util.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
java.util.Set<E> filterOverride
hierarchical
Container.Hierarchical hierarchical
propertyIds
java.util.ArrayList<E> propertyIds
- Linked list of ordered Property IDs.
types
java.util.Hashtable<K,V> types
- Property ID to type mapping.
items
java.util.Hashtable<K,V> items
- Hash of Items, where each Item is implemented as a mapping from Property
ID to Property value.
readOnlyProperties
java.util.HashSet<E> readOnlyProperties
- Set of properties that are read-only.
propertyValueChangeListeners
java.util.LinkedList<E> propertyValueChangeListeners
- List of all Property value change event listeners listening all the
properties.
singlePropertyValueChangeListeners
java.util.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
java.util.HashMap<K,V> defaultPropertyValues
nextGeneratedItemId
int nextGeneratedItemId
addedItemIndex
int addedItemIndex
itemSet
java.util.HashSet<E> itemSet
duplicates
java.util.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(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.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<T> property
- The method property from which the exception originates from
cause
java.lang.Throwable cause
- Cause of the method exception
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
name
java.lang.String name
propertyType
java.lang.Class<T> propertyType
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
propertyName
java.lang.String propertyName
instance
java.lang.Object instance
- Bean instance used as a starting point for accessing the property value.
type
java.lang.Class<T> type
name
java.lang.String name
propertyType
java.lang.Class<T> propertyType
value
java.lang.Object value
- The value contained by the Property.
type
java.lang.Class<T> type
- Data type of the Property's value.
dataSource
Property<T> dataSource
- Deprecated.
- Datasource that stores the actual value.
map
java.util.HashMap<K,V> map
- Mapping from property id to property.
list
java.util.LinkedList<E> list
- List of all property ids to maintain the order.
propertySetChangeListeners
java.util.LinkedList<E> propertySetChangeListeners
- List of property set modification listeners.
file
java.io.File file
charset
java.nio.charset.Charset charset
wrappedProperty
Property<T> wrappedProperty
inTransaction
boolean inTransaction
valueChangePending
boolean valueChangePending
valueBeforeTransaction
java.lang.Object valueBeforeTransaction
listener
Property.ValueChangeListener listener
Package com.vaadin.data.util.converter |
realConverter
Converter<PRESENTATION,MODEL> realConverter
delimiter
java.lang.String delimiter
tokenConverter
Converter<PRESENTATION,MODEL> tokenConverter
tokenType
java.lang.Class<T> tokenType
factory
StringToCollectionConverter.CollectionFactory factory
Package com.vaadin.data.util.filter |
filters
java.util.Collection<E> filters
propertyId
java.lang.Object propertyId
startValue
java.lang.Comparable<T> startValue
endValue
java.lang.Comparable<T> endValue
propertyId
java.lang.Object propertyId
operation
Compare.Operation operation
value
java.lang.Object value
propertyId
java.lang.Object propertyId
propertyId
java.lang.Object propertyId
value
java.lang.String value
caseSensitive
boolean caseSensitive
filter
Container.Filter filter
propertyId
java.lang.Object propertyId
filterString
java.lang.String filterString
ignoreCase
boolean ignoreCase
onlyMatchPrefix
boolean onlyMatchPrefix
Package com.vaadin.data.util.sqlcontainer |
serialVersionUID: -3694463129581802457L
owner
RowItem owner
propertyId
java.lang.String propertyId
readOnly
boolean readOnly
allowReadOnlyChange
boolean allowReadOnlyChange
nullable
boolean nullable
value
java.lang.Object value
changedValue
java.lang.Object changedValue
type
java.lang.Class<T> type
modified
boolean modified
versionColumn
boolean versionColumn
primaryKey
boolean primaryKey
rowId
RowId rowId
serialVersionUID: -2626764781642012467L
rowNum
java.lang.Integer rowNum
serialVersionUID: -3161778404698901258L
id
java.lang.Object[] id
serialVersionUID: -6228966439127951408L
container
SQLContainer container
id
RowId id
properties
java.util.Collection<E> properties
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
queryDelegate
QueryDelegate queryDelegate
- Query delegate
autoCommit
boolean autoCommit
- Auto commit mode, default = false
pageLength
int pageLength
- Page length = number of items contained in one page
cacheOverlap
int cacheOverlap
- Amount of cache to overlap with previous page
itemIndexes
java.util.Map<K,V> itemIndexes
- Item and index caches
cachedItems
com.vaadin.data.util.sqlcontainer.CacheMap<K,V> cachedItems
propertyIds
java.util.List<E> propertyIds
- Container properties = column names, data types and statuses
propertyTypes
java.util.Map<K,V> propertyTypes
propertyReadOnly
java.util.Map<K,V> propertyReadOnly
propertyPersistable
java.util.Map<K,V> propertyPersistable
propertyNullable
java.util.Map<K,V> propertyNullable
propertyPrimaryKey
java.util.Map<K,V> propertyPrimaryKey
filters
java.util.List<E> filters
- Filters (WHERE) and sorters (ORDER BY)
sorters
java.util.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
java.util.Date sizeUpdated
currentOffset
int currentOffset
- Starting row number of the currently fetched page
itemSetChangeListeners
java.util.LinkedList<E> itemSetChangeListeners
- ItemSetChangeListeners
removedItems
java.util.Map<K,V> removedItems
- Temporary storage for modified items and items to be removed and added
addedItems
java.util.List<E> addedItems
modifiedItems
java.util.List<E> modifiedItems
references
java.util.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
java.lang.String dataSourceJndiName
dataSource
javax.sql.DataSource dataSource
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
initialConnections
int initialConnections
maxConnections
int maxConnections
driverName
java.lang.String driverName
connectionUri
java.lang.String connectionUri
userName
java.lang.String userName
password
java.lang.String password
initialized
boolean initialized
Package com.vaadin.data.util.sqlcontainer.query |
connectionPool
JDBCConnectionPool connectionPool
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
delegate
FreeformQueryDelegate delegate
queryString
java.lang.String queryString
primaryKeyColumns
java.util.List<E> primaryKeyColumns
column
java.lang.String column
isAscending
boolean isAscending
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Custom writeObject to call rollback() if object is serialized.
- Throws:
java.io.IOException
tableName
java.lang.String tableName
- Table name (without catalog or schema information).
catalogName
java.lang.String catalogName
schemaName
java.lang.String schemaName
fullTableName
java.lang.String fullTableName
- Cached concatenated version of the table name.
primaryKeyColumns
java.util.List<E> primaryKeyColumns
- Primary key column name(s) in the table.
versionColumn
java.lang.String versionColumn
- Version column name in the table.
filters
java.util.List<E> filters
- Currently set Filters and OrderBys
orderBys
java.util.List<E> orderBys
sqlGenerator
SQLGenerator sqlGenerator
- SQLGenerator instance to use for generating queries
rowIdChangeListeners
java.util.LinkedList<E> rowIdChangeListeners
- Row ID change listeners
bufferedEvents
java.util.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
java.lang.Class<T> statementHelperClass
queryString
java.lang.String queryString
parameters
java.util.List<E> parameters
dataTypes
java.util.Map<K,V> dataTypes
Package com.vaadin.data.util.sqlcontainer.query.generator.filter |
quoteStart
java.lang.String quoteStart
quoteEnd
java.lang.String quoteEnd
Package com.vaadin.data.validator |
errorMessage
java.lang.String errorMessage
- Error message that is included in an
InvalidValueException
if
such is thrown.
serialVersionUID: 1L
propertyName
java.lang.String propertyName
beanClass
java.lang.Class<T> beanClass
locale
java.util.Locale locale
value
java.lang.Object value
descriptor
javax.validation.metadata.ConstraintDescriptor<T extends java.lang.annotation.Annotation> descriptor
errorMessage
java.lang.String errorMessage
mode
CompositeValidator.CombinationMode mode
- Operation mode.
validators
java.util.List<E> validators
- List of contained validators.
onlyNullAllowed
boolean onlyNullAllowed
errorMessage
java.lang.String errorMessage
minValue
java.lang.Comparable<T> minValue
minValueIncluded
boolean minValueIncluded
maxValue
java.lang.Comparable<T> maxValue
maxValueIncluded
boolean maxValueIncluded
type
java.lang.Class<T> type
pattern
java.util.regex.Pattern pattern
complete
boolean complete
minLength
java.lang.Integer minLength
maxLength
java.lang.Integer maxLength
allowNull
boolean allowNull
caption
java.lang.String caption
- Action title.
icon
Resource icon
- Action icon.
serialVersionUID: 1641868163608066491L
ownActions
java.util.HashSet<E> ownActions
- List of action handlers. Guaranteed to keep the original insertion order.
actionHandlers
java.util.HashSet<E> actionHandlers
- List of action handlers. Guaranteed to keep the original insertion order.
actionMapper
KeyMapper<V> actionMapper
- Action mapper
viewer
Component viewer
clientHasActions
boolean clientHasActions
connector
ClientConnector connector
listenerList
java.util.LinkedHashSet<E> listenerList
- List of registered listeners.
component
Component component
item
Item item
itemId
java.lang.Object itemId
propertyId
java.lang.Object propertyId
clickedComponent
Component clickedComponent
childComponent
Component childComponent
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
eventType
java.lang.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
java.lang.Object target
- The object containing the trigger method.
arguments
java.lang.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
com.vaadin.shared.MouseEventDetails details
oldSelection
java.util.LinkedHashSet<E> oldSelection
newSelection
java.util.LinkedHashSet<E> newSelection
keyCode
int keyCode
modifiers
int[] modifiers
serialVersionUID: 1L
sortOrder
java.util.List<E> sortOrder
userOriginated
boolean userOriginated
rawVariables
java.util.Map<K,V> rawVariables
sourceComponent
Component sourceComponent
Package com.vaadin.event.dd |
transferable
Transferable transferable
dropTargetDetails
TargetDetails dropTargetDetails
data
java.util.HashMap<K,V> data
dropTarget
DropTarget dropTarget
Package com.vaadin.event.dd.acceptcriteria |
serialVersionUID: 7406683402153141461L
serialVersionUID: -5242574480825471748L
criteria
ClientSideCriterion[] criteria
dataFlavorId
java.lang.String dataFlavorId
serialVersionUID: 1131422338558613244L
acceptCriterion
AcceptCriterion acceptCriterion
serialVersionUID: 1L
criteria
AcceptCriterion[] criteria
serialVersionUID: 2128510128911628902L
components
Component[] components
serialVersionUID: -451399314705532584L
serialVersionUID: 763165450054331246L
propertyName
java.lang.String propertyName
value
java.lang.Object value
Package com.vaadin.navigator |
ui
UI ui
stateManager
NavigationStateManager stateManager
display
ViewDisplay display
currentView
View currentView
listeners
java.util.List<E> listeners
providers
java.util.List<E> providers
currentNavigationState
java.lang.String currentNavigationState
errorProvider
ViewProvider errorProvider
viewName
java.lang.String viewName
viewClass
java.lang.Class<T> viewClass
container
ComponentContainer container
container
SingleComponentContainer container
viewName
java.lang.String viewName
view
View view
page
Page page
navigator
Navigator navigator
oldView
View oldView
newView
View newView
viewName
java.lang.String viewName
parameters
java.lang.String parameters
Package com.vaadin.server |
rpcManagerMap
java.util.Map<K,V> rpcManagerMap
- A map from client to server RPC interface class name to the RPC call
manager that handles incoming RPC calls for that interface.
rpcProxyMap
java.util.Map<K,V> rpcProxyMap
- A map from server to client RPC interface class to the RPC proxy that
sends ourgoing RPC calls for that interface.
sharedState
com.vaadin.shared.communication.SharedState sharedState
- Shared state object to be communicated from the server to the client when
modified.
stateType
java.lang.Class<T> stateType
pendingInvocations
java.util.ArrayList<E> pendingInvocations
- Pending RPC method invocations to be sent.
connectorId
java.lang.String connectorId
extensions
java.util.ArrayList<E> extensions
eventRouter
EventRouter eventRouter
- The EventRouter used for the event model.
errorHandler
ErrorHandler errorHandler
mode
AbstractErrorMessage.ContentMode mode
- Content mode.
message
java.lang.String message
- Message in content mode.
level
ErrorMessage.ErrorLevel level
- Error level.
causes
java.util.List<E> causes
previouslyAttached
boolean previouslyAttached
parent
ClientConnector parent
callbackHelper
JavaScriptCallbackHelper callbackHelper
fragmentNodes
java.util.List<E> fragmentNodes
response
VaadinResponse response
bootstrapResponse
BootstrapFragmentResponse bootstrapResponse
widgetsetName
java.lang.String widgetsetName
themeName
java.lang.String themeName
appId
java.lang.String appId
pushMode
com.vaadin.shared.communication.PushMode pushMode
applicationParameters
elemental.json.JsonObject applicationParameters
uriResolver
com.vaadin.shared.VaadinUriResolver uriResolver
headers
java.util.Map<K,V> headers
document
org.jsoup.nodes.Document document
request
VaadinRequest request
session
VaadinSession session
uiClass
java.lang.Class<T> uiClass
uiProvider
UIProvider uiProvider
uiProvider
com.vaadin.server.BrowserWindowOpener.BrowserWindowOpenerUIProvider uiProvider
bufferSize
int bufferSize
- Default buffer size for this stream resource.
cacheTime
long cacheTime
- Default cache time for this stream resource.
associatedClass
java.lang.Class<T> associatedClass
- Associated class used for identifying the source of the resource.
resourceName
java.lang.String resourceName
- Name of the resource is relative to the associated class.
connector
com.vaadin.shared.Connector connector
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream stream)
throws java.io.IOException
- Throws:
java.io.IOException
connector
ClientConnector connector
interfaceName
java.lang.String interfaceName
methodName
java.lang.String methodName
parameters
java.lang.Object[] parameters
parameterTypes
java.lang.reflect.Type[] parameterTypes
sequenceNumber
long sequenceNumber
method
java.lang.String method
file
java.lang.String file
className
java.lang.String className
classNameSimple
java.lang.String classNameSimple
lineNumber
int lineNumber
component
Component component
invalidHeight
boolean invalidHeight
invalidWidth
boolean invalidWidth
subErrors
java.util.Vector<E> subErrors
loggedDecodingWarning
boolean loggedDecodingWarning
initParameters
java.util.Properties initParameters
productionMode
boolean productionMode
xsrfProtectionEnabled
boolean xsrfProtectionEnabled
resourceCacheTime
int resourceCacheTime
heartbeatInterval
int heartbeatInterval
closeIdleSessions
boolean closeIdleSessions
pushMode
com.vaadin.shared.communication.PushMode pushMode
systemPropertyBaseClass
java.lang.Class<T> systemPropertyBaseClass
legacyPropertyToStringMode
DeploymentConfiguration.LegacyProperyToStringMode legacyPropertyToStringMode
syncIdCheck
boolean syncIdCheck
sendUrlsAsParameters
boolean sendUrlsAsParameters
stream
java.io.InputStream stream
contentType
java.lang.String contentType
fileName
java.lang.String fileName
params
java.util.Map<K,V> params
cacheTime
long cacheTime
bufferSize
int bufferSize
lastVisitId
int lastVisitId
lastVisitAccepted
boolean lastVisitAccepted
dragEvent
DragAndDropEvent dragEvent
session
VaadinSession session
acceptCriterion
AcceptCriterion acceptCriterion
errorHandler
ErrorHandler errorHandler
encodedValue
elemental.json.JsonValue encodedValue
diff
elemental.json.JsonValue diff
throwable
java.lang.Throwable throwable
sourceURL
java.lang.String sourceURL
- Url of the download.
mimeType
java.lang.String mimeType
- MIME Type for the resource
overrideContentType
boolean overrideContentType
bufferSize
int bufferSize
- Default buffer size for this stream resource.
sourceFile
java.io.File sourceFile
- File where the downloaded content is fetched from.
cacheTime
long cacheTime
- Default cache time for this stream resource.
fontFamily
java.lang.String fontFamily
codePoint
int codePoint
resourceUsers
java.util.Map<K,V> resourceUsers
- Used to detect when a resource is no longer used by any connector.
usedResources
java.util.Map<K,V> usedResources
- Used to find the resources that might not be needed any more when a
connector is unregistered.
legacyResourceKeys
java.util.Map<K,V> legacyResourceKeys
legacyResources
java.util.Map<K,V> legacyResources
nextLegacyId
int nextLegacyId
connector
AbstractClientConnector connector
callbacks
java.util.Map<K,V> callbacks
javascriptCallbackRpc
JavaScript.JavaScriptCallbackRpc javascriptCallbackRpc
mOpenTags
java.util.Stack<E> mOpenTags
openJsonTags
java.util.Stack<E> openJsonTags
openPaintables
java.util.Stack<E> openPaintables
openPaintableTags
java.util.Stack<E> openPaintableTags
uidlBuffer
java.io.PrintWriter uidlBuffer
closed
boolean closed
manager
LegacyCommunicationManager manager
changes
int changes
usedResources
java.util.Set<E> usedResources
customLayoutArgumentsOpen
boolean customLayoutArgumentsOpen
tag
com.vaadin.server.JsonPaintTarget.JsonTag tag
cacheEnabled
boolean cacheEnabled
usedClientConnectors
java.util.Set<E> usedClientConnectors
lastKey
int lastKey
objectKeyMap
java.util.HashMap<K,V> objectKeyMap
keyObjectMap
java.util.HashMap<K,V> keyObjectMap
mainWindow
LegacyWindow mainWindow
- Deprecated.
theme
java.lang.String theme
- Deprecated.
legacyUINames
java.util.Map<K,V> legacyUINames
- Deprecated.
isRunning
boolean isRunning
- Deprecated.
logoutURL
java.lang.String logoutURL
- Deprecated.
- URL where the user is redirected to on application close, or null if
application is just closed without redirection.
url
java.net.URL url
- Deprecated.
namelessUIIndex
int namelessUIIndex
- Deprecated.
- Counter to get unique names for windows with no explicit name
uiToClientCache
java.util.HashMap<K,V> uiToClientCache
- Deprecated.
session
VaadinSession session
- Deprecated.
- The session this communication manager is used for
requestThemeName
java.lang.String requestThemeName
- Deprecated.
publishedFileContexts
java.util.Map<K,V> publishedFileContexts
- Deprecated.
typeToKey
java.util.HashMap<K,V> typeToKey
- Deprecated.
nextTypeKey
int nextTypeKey
- Deprecated.
res
java.util.Set<E> res
- Deprecated.
ui
UI ui
state
com.vaadin.shared.ui.ui.UIState.LocaleServiceState state
openList
java.util.LinkedList<E> openList
- Resources to be opened automatically on next repaint. The list is
automatically cleared when it has been sent to the client.
notifications
java.util.List<E> notifications
- A list of notifications that are waiting to be sent to the client.
Cleared (set to null) when the notifications have been sent.
eventRouter
EventRouter eventRouter
uI
UI uI
browserWindowWidth
int browserWindowWidth
browserWindowHeight
int browserWindowHeight
javaScript
JavaScript javaScript
styles
Page.Styles styles
location
java.net.URI location
- The current browser location.
state
com.vaadin.shared.ui.ui.PageState state
windowName
java.lang.String windowName
width
int width
height
int height
injectedStyles
java.util.LinkedHashSet<E> injectedStyles
pendingInjections
java.util.LinkedHashSet<E> pendingInjections
ui
UI ui
uriFragment
java.lang.String uriFragment
- The new URI fragment
resource
Resource resource
connector
ClientConnector connector
key
java.lang.String key
implementation
com.vaadin.shared.communication.ServerRpc implementation
rpcInterface
java.lang.Class<T> rpcInterface
method
java.lang.reflect.Method method
interfaceClass
java.lang.Class<T> interfaceClass
session
VaadinSession session
session
VaadinSession session
request
VaadinRequest request
size
float size
unit
Sizeable.Unit unit
streamSource
StreamResource.StreamSource streamSource
- Source stream the downloaded content is fetched from.
MIMEType
java.lang.String MIMEType
- Explicit mime-type.
filename
java.lang.String filename
- Filename.
bufferSize
int bufferSize
- Default buffer size for this stream resource.
cacheTime
long cacheTime
- Default cache time for this stream resource.
cause
java.lang.Throwable cause
- Cause of the method exception
sessionExpiredURL
java.lang.String sessionExpiredURL
sessionExpiredNotificationEnabled
boolean sessionExpiredNotificationEnabled
sessionExpiredCaption
java.lang.String sessionExpiredCaption
sessionExpiredMessage
java.lang.String sessionExpiredMessage
communicationErrorURL
java.lang.String communicationErrorURL
communicationErrorNotificationEnabled
boolean communicationErrorNotificationEnabled
communicationErrorCaption
java.lang.String communicationErrorCaption
communicationErrorMessage
java.lang.String communicationErrorMessage
authenticationErrorURL
java.lang.String authenticationErrorURL
authenticationErrorNotificationEnabled
boolean authenticationErrorNotificationEnabled
authenticationErrorCaption
java.lang.String authenticationErrorCaption
authenticationErrorMessage
java.lang.String authenticationErrorMessage
internalErrorURL
java.lang.String internalErrorURL
internalErrorNotificationEnabled
boolean internalErrorNotificationEnabled
internalErrorCaption
java.lang.String internalErrorCaption
internalErrorMessage
java.lang.String internalErrorMessage
outOfSyncURL
java.lang.String outOfSyncURL
outOfSyncNotificationEnabled
boolean outOfSyncNotificationEnabled
outOfSyncCaption
java.lang.String outOfSyncCaption
outOfSyncMessage
java.lang.String outOfSyncMessage
cookiesDisabledURL
java.lang.String cookiesDisabledURL
cookiesDisabledNotificationEnabled
boolean cookiesDisabledNotificationEnabled
cookiesDisabledCaption
java.lang.String cookiesDisabledCaption
cookiesDisabledMessage
java.lang.String cookiesDisabledMessage
locale
java.util.Locale locale
request
VaadinRequest request
service
VaadinService service
resourceID
java.lang.String resourceID
- Id of the terminal managed resource.
uiClass
java.lang.Class<T> uiClass
uiId
java.lang.Integer uiId
request
VaadinRequest request
vaadinService
VaadinPortletService vaadinService
originalRequest
javax.servlet.http.HttpServletRequest originalRequest
vaadinService
VaadinPortletService vaadinService
response
javax.portlet.PortletResponse response
vaadinService
VaadinPortletService vaadinService
portlet
VaadinPortlet portlet
portletListeners
java.util.Set<E> portletListeners
- Deprecated.
eventActionDestinationMap
java.util.Map<K,V> eventActionDestinationMap
- Deprecated.
eventActionValueMap
java.util.Map<K,V> eventActionValueMap
- Deprecated.
sharedParameterActionNameMap
java.util.Map<K,V> sharedParameterActionNameMap
- Deprecated.
sharedParameterActionValueMap
java.util.Map<K,V> sharedParameterActionValueMap
- Deprecated.
deploymentConfiguration
DeploymentConfiguration deploymentConfiguration
eventRouter
EventRouter eventRouter
systemMessagesProvider
SystemMessagesProvider systemMessagesProvider
classLoader
java.lang.ClassLoader classLoader
requestHandlers
java.lang.Iterable<T> requestHandlers
pushWarningEmitted
boolean pushWarningEmitted
- Keeps track of whether a warning about missing push support has already
been logged. This is used to avoid spamming the log with the same message
every time a new UI is bootstrapped.
initialized
boolean initialized
- Has
VaadinService.init()
been run?
servletService
VaadinServletService servletService
scssCache
java.util.Map<K,V> scssCache
- Global cache of scss compilation results. This map is protected from
concurrent access by
VaadinServlet.SCSS_MUTEX
.
vaadinService
VaadinServletService vaadinService
vaadinService
VaadinServletService vaadinService
servlet
VaadinServlet servlet
atmosphereAvailable
boolean atmosphereAvailable
pushWarningLogged
boolean pushWarningLogged
- Keeps track of whether a warning about missing push support has already
been logged. This is used to avoid spamming the log with the same message
every time a new UI is bootstrapped.
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Override default deserialization logic to account for transient
VaadinSession.pendingAccessQueue
.
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
configuration
DeploymentConfiguration configuration
- Configuration for the session.
locale
java.util.Locale locale
- Default locale of the session.
errorHandler
ErrorHandler errorHandler
- Session wide error handler which is used by default if an error is left
unhandled.
converterFactory
ConverterFactory converterFactory
- The converter factory that is used to provide default converters for the
session.
requestHandlers
java.util.LinkedList<E> requestHandlers
nextUIId
int nextUIId
uIs
java.util.Map<K,V> uIs
embedIdMap
java.util.Map<K,V> embedIdMap
eventRouter
EventRouter eventRouter
globalResourceHandler
GlobalResourceHandler globalResourceHandler
browser
WebBrowser browser
dragAndDropService
DragAndDropService dragAndDropService
communicationManager
LegacyCommunicationManager communicationManager
cumulativeRequestDuration
long cumulativeRequestDuration
lastRequestDuration
long lastRequestDuration
lastRequestTimestamp
long lastRequestTimestamp
state
VaadinSession.State state
attributes
java.util.Map<K,V> attributes
uiProviders
java.util.LinkedList<E> uiProviders
connectorIdSequence
int connectorIdSequence
csrfToken
java.lang.String csrfToken
screenHeight
int screenHeight
screenWidth
int screenWidth
browserApplication
java.lang.String browserApplication
locale
java.util.Locale locale
address
java.lang.String address
secureConnection
boolean secureConnection
timezoneOffset
int timezoneOffset
rawTimezoneOffset
int rawTimezoneOffset
dstSavings
int dstSavings
dstInEffect
boolean dstInEffect
touchDevice
boolean touchDevice
browserDetails
com.vaadin.shared.VBrowserDetails browserDetails
clientServerTimeDelta
long clientServerTimeDelta
session
javax.servlet.http.HttpSession session
session
javax.portlet.PortletSession session
Package com.vaadin.server.communication |
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reinitializes this PushConnection after deserialization. The connection
is initially in disconnected state; the client will handle the
reconnecting.
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
ui
UI ui
message
java.lang.StringBuilder message
messageLength
int messageLength
timeoutInterval
int timeoutInterval
pushHandler
PushHandler pushHandler
atmosphere
org.atmosphere.cpr.AtmosphereFramework atmosphere
pushHandler
PushHandler pushHandler
csrfToken
java.lang.String csrfToken
invocations
elemental.json.JsonArray invocations
syncId
int syncId
json
elemental.json.JsonObject json
resynchronize
boolean resynchronize
rpcHandler
ServerRpcHandler rpcHandler
rpc
com.vaadin.shared.ui.absolutelayout.AbsoluteLayoutServerRpc rpc
componentToCoordinates
java.util.LinkedHashMap<K,V> componentToCoordinates
zIndex
int zIndex
topValue
java.lang.Float topValue
rightValue
java.lang.Float rightValue
bottomValue
java.lang.Float bottomValue
leftValue
java.lang.Float leftValue
topUnits
Sizeable.Unit topUnits
rightUnits
Sizeable.Unit rightUnits
bottomUnits
Sizeable.Unit bottomUnits
leftUnits
Sizeable.Unit leftUnits
rpc
com.vaadin.shared.ui.colorpicker.ColorPickerServerRpc rpc
popupStyle
AbstractColorPicker.PopupStyle popupStyle
window
ColorPickerPopup window
- The popup window.
color
com.vaadin.shared.ui.colorpicker.Color color
- The color.
parent
UI parent
- The UI.
popupCaption
java.lang.String popupCaption
positionX
int positionX
positionY
int positionY
rgbVisible
boolean rgbVisible
hsvVisible
boolean hsvVisible
swatchesVisible
boolean swatchesVisible
historyVisible
boolean historyVisible
textfieldVisible
boolean textfieldVisible
applicationData
java.lang.Object applicationData
- Application specific data object. The component does not use or modify
this.
componentError
ErrorMessage componentError
- The internal error message of the component.
locale
java.util.Locale locale
- Locale of this component.
delayedFocus
boolean delayedFocus
- The component should receive focus (if
Focusable
) when attached.
width
float width
height
float height
widthUnit
Sizeable.Unit widthUnit
heightUnit
Sizeable.Unit heightUnit
actionManager
ConnectorActionManager actionManager
- Keeps track of the Actions added to this component; the actual
handling/notifying is delegated, usually to the containing window.
visible
boolean visible
parent
HasComponents parent
explicitImmediateValue
java.lang.Boolean explicitImmediateValue
value
java.lang.Object value
- Value of the abstract field.
converter
Converter<PRESENTATION,MODEL> converter
- A converter used to convert from the data model type to the field type
and vice versa.
dataSource
Property<T> dataSource
- Connected data-source.
validators
java.util.LinkedList<E> validators
- The list of validators.
buffered
boolean buffered
- True if field is in buffered mode, false otherwise
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 ?
requiredError
java.lang.String requiredError
- The error message for the exception that is thrown when the field is
required but empty.
conversionError
java.lang.String conversionError
- The error message that is shown when the field value cannot be converted.
validationVisible
boolean validationVisible
- Is automatic validation enabled.
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()
valueLocale
java.util.Locale valueLocale
- The locale used when setting the value.
focusable
Component.Focusable focusable
callbackHelper
JavaScriptCallbackHelper callbackHelper
rpc
com.vaadin.shared.ui.orderedlayout.AbstractOrderedLayoutServerRpc rpc
components
java.util.LinkedList<E> components
- Custom layout slots containing the components.
defaultComponentAlignment
Alignment defaultComponentAlignment
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<V> itemIdMapper
- Keymapper used to map key values.
itemIcons
java.util.HashMap<K,V> itemIcons
- Item icons.
itemCaptions
java.util.HashMap<K,V> itemCaptions
- Item captions.
itemCaptionMode
AbstractSelect.ItemCaptionMode itemCaptionMode
- Item caption mode.
itemCaptionPropertyId
java.lang.Object itemCaptionPropertyId
- Item caption source property id.
itemIconPropertyId
java.lang.Object itemIconPropertyId
- Item icon source property id.
propertySetEventListeners
java.util.Set<E> propertySetEventListeners
- List of property set change event listeners.
itemSetEventListeners
java.util.Set<E> itemSetEventListeners
- List of item set change event listeners.
nullSelectionItemId
java.lang.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
java.lang.Object idOver
- The item id over which the drag event happened.
captionChangeNotifiers
java.util.HashSet<E> captionChangeNotifiers
content
Component content
posUnit
Sizeable.Unit posUnit
posMinUnit
Sizeable.Unit posMinUnit
posMaxUnit
Sizeable.Unit posMaxUnit
rpc
com.vaadin.shared.ui.splitpanel.AbstractSplitPanelRpc rpc
position
float position
unit
Sizeable.Unit unit
nullRepresentation
java.lang.String nullRepresentation
- Null representation.
nullSettingAllowed
boolean nullSettingAllowed
- Is setting to null from non-null value allowed by setting with null
representation .
lastKnownTextContent
java.lang.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
AbstractField.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
java.lang.String curText
cursorPosition
int cursorPosition
bitMask
int bitMask
rpc
com.vaadin.shared.ui.button.ButtonServerRpc rpc
focusBlurRpc
FieldEvents.FocusAndBlurServerRpcImpl focusBlurRpc
clickShortcut
Button.ClickShortcut clickShortcut
details
com.vaadin.shared.MouseEventDetails details
button
Button button
currentTimeFormat
Calendar.TimeFormat currentTimeFormat
- Defines currently active format for time. 12H/24H.
currentCalendar
java.util.Calendar currentCalendar
- Internal calendar data source.
timezone
java.util.TimeZone timezone
- Defines the component's active time zone.
startDate
java.util.Date startDate
- Defines the calendar's date range starting point.
endDate
java.util.Date endDate
- Defines the calendar's date range ending point.
calendarEventProvider
CalendarEventProvider calendarEventProvider
- Event provider.
events
java.util.List<E> events
- Internal buffer for the events that are retrieved from the event
provider.
df_date
java.text.DateFormat df_date
- Date format that will be used in the UIDL for dates.
df_time
java.text.DateFormat df_time
- Time format that will be used in the UIDL for time.
df_date_time
java.text.DateFormat df_date_time
- Date format that will be used in the UIDL for both date and time.
scrollTop
int scrollTop
- Week view's scroll position. Client sends updates to this value so that
scroll position wont reset all the time.
weeklyCaptionFormat
java.lang.String weeklyCaptionFormat
- Caption format for the weekly view
handlers
java.util.Map<K,V> handlers
- Map from event ids to event handlers
dropHandler
DropHandler dropHandler
- Drop Handler for Vaadin DD. By default null.
firstDay
int firstDay
- First day to show for a week
lastDay
int lastDay
- Last day to show for a week
firstHour
int firstHour
- First hour to show for a day
lastHour
int lastHour
- Last hour to show for a day
actionHandlers
java.util.LinkedList<E> actionHandlers
- List of action handlers.
actionMapper
KeyMapper<V> actionMapper
- Action mapper.
rpc
com.vaadin.ui.Calendar.CalendarServerRpcImpl rpc
rpc
com.vaadin.shared.ui.checkbox.CheckBoxServerRpc rpc
focusBlurRpc
FieldEvents.FocusAndBlurServerRpcImpl focusBlurRpc
inputPrompt
java.lang.String inputPrompt
pageLength
int pageLength
- Holds value of property pageLength. 0 disables paging.
currentPage
int currentPage
filteringMode
com.vaadin.shared.ui.combobox.FilteringMode filteringMode
filterstring
java.lang.String filterstring
prevfilterstring
java.lang.String prevfilterstring
filteredSize
int filteredSize
- Number of options that pass the filter, excluding the null item if any.
filteredOptions
java.util.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.
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
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
connectorIdToConnector
java.util.HashMap<K,V> connectorIdToConnector
dirtyConnectors
java.util.Set<E> dirtyConnectors
uninitializedConnectors
java.util.Set<E> uninitializedConnectors
unregisteredConnectors
java.util.Set<E> unregisteredConnectors
- Connectors that have been unregistered and should be cleaned up the next
time
ConnectorTracker.cleanConnectorMap()
is invoked unless they have been
registered again.
writingResponse
boolean writingResponse
uI
UI uI
pidToNameToStreamVariable
java.util.Map<K,V> pidToNameToStreamVariable
- Maps connectorIds to a map of named StreamVariables
streamVariableToSeckey
java.util.Map<K,V> streamVariableToSeckey
currentSyncId
int currentSyncId
syncIdToUnregisteredConnectorIds
java.util.TreeMap<K,V> syncIdToUnregisteredConnectorIds
- Map to track on which syncId each connector was removed.
- See Also:
ConnectorTracker.getCurrentSyncId()
,
#cleanConcurrentlyRemovedConnectorIds(long)
rpc
com.vaadin.shared.ui.csslayout.CssLayoutServerRpc rpc
components
java.util.LinkedList<E> components
- Custom layout slots containing the components.
root
Component root
- The root component implementing the custom component.
root
Component root
- The root component implementing the custom component.
slots
java.util.HashMap<K,V> slots
- Custom layout slots containing the components.
resolution
com.vaadin.shared.ui.datefield.Resolution resolution
- Specified smallest modifiable unit for the date field.
dateFormat
java.lang.String dateFormat
- Overridden format string
lenient
boolean lenient
dateString
java.lang.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
java.lang.String currentParseErrorMessage
defaultParseErrorMessage
java.lang.String defaultParseErrorMessage
timeZone
java.util.TimeZone timeZone
dateOutOfRangeMessage
java.lang.String dateOutOfRangeMessage
currentRangeValidator
DateRangeValidator currentRangeValidator
preventValueChangeEvent
boolean preventValueChangeEvent
- Determines whether the ValueChangeEvent should be fired. Used to prevent
firing the event when UI has invalid string until uiHasValidDateString
flag is set
receivers
java.util.Map<K,V> receivers
html5DataFlavors
java.util.Map<K,V> html5DataFlavors
dragStartMode
DragAndDropWrapper.DragStartMode dragStartMode
dragImageComponent
Component dragImageComponent
sentIds
java.util.Set<E> sentIds
dropHandler
DropHandler dropHandler
files
Html5File[] files
type
int type
- Type of the object.
mimeType
java.lang.String mimeType
- Generic object attributes.
standby
java.lang.String standby
parameters
java.util.Map<K,V> parameters
- Hash of object parameters.
codebase
java.lang.String codebase
- Applet or other client side runnable properties.
codetype
java.lang.String codetype
classId
java.lang.String classId
archive
java.lang.String archive
altText
java.lang.String altText
rpc
com.vaadin.shared.ui.embedded.EmbeddedServerRpc rpc
propertyValue
java.lang.Object propertyValue
- Deprecated.
itemDatasource
Item itemDatasource
- Deprecated.
- Item connected to this form as datasource.
propertyIds
java.util.LinkedList<E> propertyIds
- Deprecated.
- Ordered list of property ids in this editor.
currentBufferedSourceException
Buffered.SourceException currentBufferedSourceException
- Deprecated.
- Current buffered source exception.
buffered
boolean buffered
- Deprecated.
- Is the form in buffered mode.
fields
java.util.HashMap<K,V> fields
- Deprecated.
- Mapping from propertyName to corresponding field.
ownProperties
java.util.HashMap<K,V> ownProperties
- Deprecated.
- Form may act as an Item, its own properties are stored here.
fieldFactory
FormFieldFactory fieldFactory
- Deprecated.
- Field factory for this form.
visibleItemProperties
java.util.Collection<E> visibleItemProperties
- Deprecated.
- Visible item properties.
fieldValueChangeListener
Property.ValueChangeListener fieldValueChangeListener
- Deprecated.
- 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().
validationVisibleOnCommit
boolean validationVisibleOnCommit
- Deprecated.
- If this is true, commit implicitly calls setValidationVisible(true).
gridlayoutCursorX
int gridlayoutCursorX
- Deprecated.
gridlayoutCursorY
int gridlayoutCursorY
- Deprecated.
ownActionManager
ActionManager ownActionManager
- Deprecated.
- 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.
datasource
Container.Indexed datasource
- The data source attached to the grid
columns
java.util.Map<K,V> columns
- Property id to column instance mapping
columnKeys
KeyMapper<V> columnKeys
- Key generator for column server-to-client communication
sortOrder
java.util.List<E> sortOrder
- The current sort order
propertyListener
Container.PropertySetChangeListener propertyListener
- Property listener for listening to changes in data source properties.
datasourceExtension
RpcDataProviderExtension datasourceExtension
selectionModel
Grid.SelectionModel selectionModel
- The selection model that is currently in use. Never
null
after the constructor has been run.
applyingSelectionFromClient
boolean applyingSelectionFromClient
- Used to know whether selection change events originate from the server or
the client so the selection change handler knows whether the changes
should be sent to the client.
header
Grid.Header header
footer
Grid.Footer footer
editedItemId
java.lang.Object editedItemId
editorFieldGroup
FieldGroup editorFieldGroup
cellStyleGenerator
Grid.CellStyleGenerator cellStyleGenerator
rowStyleGenerator
Grid.RowStyleGenerator rowStyleGenerator
defaultContainer
boolean defaultContainer
true
if Grid is using the internal IndexedContainer created
in Grid() constructor, or false
if the user has set their
own Container.
- See Also:
#setContainerDataSource(Indexed)
,
Grid.Grid()
editorErrorHandler
Grid.EditorErrorHandler editorErrorHandler
detailsGenerator
Grid.DetailsGenerator detailsGenerator
- The user-defined details generator.
- See Also:
Grid.setDetailsGenerator(DetailsGenerator)
detailComponentManager
RpcDataProviderExtension.DetailComponentManager detailComponentManager
presentationType
java.lang.Class<T> presentationType
nullRepresentation
java.lang.String nullRepresentation
selection
java.util.LinkedHashSet<E> selection
grid
Grid grid
rowReference
Grid.RowReference rowReference
propertyId
java.lang.Object propertyId
state
com.vaadin.shared.ui.grid.GridColumnState state
- The state of the column shared to the client
grid
Grid grid
- The grid this column is associated with
propertyId
java.lang.Object propertyId
- Backing property for column
converter
Converter<PRESENTATION,MODEL> converter
isFirstConverterAssignment
boolean isFirstConverterAssignment
- A check for allowing the
constructor
to call
Grid.Column.setConverter(Converter)
with a null
, even if
model and renderer aren't compatible.
userOriginated
boolean userOriginated
- Is the column reorder related to this event initiated by the user
column
Grid.Column column
userOriginated
boolean userOriginated
hidden
boolean hidden
cause
FieldGroup.CommitException cause
errorColumns
java.util.Set<E> errorColumns
userErrorMessage
java.lang.String userErrorMessage
footerState
com.vaadin.shared.ui.grid.GridStaticSectionState footerState
defaultRow
Grid.HeaderRow defaultRow
headerState
com.vaadin.shared.ui.grid.GridStaticSectionState headerState
selectionLimit
int selectionLimit
grid
Grid grid
itemId
java.lang.Object itemId
rpc
com.vaadin.shared.ui.gridlayout.GridLayoutServerRpc rpc
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
components
java.util.LinkedList<E> components
columnExpandRatio
java.util.Map<K,V> columnExpandRatio
rowExpandRatio
java.util.Map<K,V> rowExpandRatio
defaultComponentAlignment
Alignment defaultComponentAlignment
childData
com.vaadin.shared.ui.gridlayout.GridLayoutState.ChildComponentData childData
component
Component component
areaOutOfBounds
GridLayout.Area areaOutOfBounds
existingArea
GridLayout.Area existingArea
component
Component component
component
Component component
name
java.lang.String name
size
long size
streamVariable
StreamVariable streamVariable
type
java.lang.String type
rpc
com.vaadin.shared.ui.image.ImageServerRpc rpc
functions
java.util.Map<K,V> functions
converter
Converter<PRESENTATION,MODEL> converter
- A converter used to convert from the data model type to the field type
and vice versa. Label type is always String.
dataSource
Property<T> dataSource
name
java.lang.String name
- Deprecated.
application
LegacyApplication application
- Deprecated.
columns
int columns
rows
int rows
usernameCaption
java.lang.String usernameCaption
- Deprecated.
passwordCaption
java.lang.String passwordCaption
- Deprecated.
loginButtonCaption
java.lang.String loginButtonCaption
- Deprecated.
iframe
Embedded iframe
- Deprecated.
params
java.util.Map<K,V> params
menuItems
java.util.List<E> menuItems
numberOfItems
int numberOfItems
moreItem
MenuBar.MenuItem moreItem
openRootOnHover
boolean openRootOnHover
htmlContentAllowed
boolean htmlContentAllowed
itsId
int itsId
- Private members *
itsCommand
MenuBar.Command itsCommand
itsText
java.lang.String itsText
itsChildren
java.util.List<E> itsChildren
itsIcon
Resource itsIcon
itsParent
MenuBar.MenuItem itsParent
enabled
boolean enabled
visible
boolean visible
isSeparator
boolean isSeparator
styleName
java.lang.String styleName
description
java.lang.String description
checkable
boolean checkable
checked
boolean checked
columns
int columns
focusBlurRpc
FieldEvents.FocusAndBlurServerRpcImpl focusBlurRpc
caption
java.lang.String caption
description
java.lang.String description
icon
Resource icon
position
com.vaadin.shared.Position position
delayMsec
int delayMsec
styleName
java.lang.String styleName
htmlContentAllowed
boolean htmlContentAllowed
disabledItemIds
java.util.Set<E> disabledItemIds
htmlContentAllowed
boolean htmlContentAllowed
actionManager
ActionManager actionManager
- Keeps track of the Actions added to this component, and manages the
painting and handling as well.
rpc
com.vaadin.shared.ui.panel.PanelServerRpc rpc
inputPrompt
java.lang.String inputPrompt
content
PopupView.Content content
visibleComponent
Component visibleComponent
rpc
com.vaadin.shared.ui.popupview.PopupViewServerRpc rpc
rpc
com.vaadin.shared.ui.progressindicator.ProgressIndicatorServerRpc rpc
- Deprecated.
nullRepresentation
java.lang.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.
rpc
com.vaadin.shared.ui.slider.SliderServerRpc rpc
value
java.lang.Double value
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<V> columnIdMap
- Keymapper for column ids.
visibleColumns
java.util.LinkedList<E> visibleColumns
- Holds visible column propertyIds - in order.
noncollapsibleColumns
java.util.HashSet<E> noncollapsibleColumns
- Holds noncollapsible columns.
collapsedColumns
java.util.HashSet<E> collapsedColumns
- Holds propertyIds of currently collapsed columns.
columnHeaders
java.util.HashMap<K,V> columnHeaders
- Holds headers for visible columns (by propertyId).
columnFooters
java.util.HashMap<K,V> columnFooters
- Holds footers for visible columns (by propertyId).
columnIcons
java.util.HashMap<K,V> columnIcons
- Holds icons for visible columns (by propertyId).
columnAlignments
java.util.HashMap<K,V> columnAlignments
- Holds alignments for visible columns (by propertyId).
columnWidths
java.util.HashMap<K,V> columnWidths
- Holds column widths in pixels for visible columns (by propertyId).
columnExpandRatios
java.util.HashMap<K,V> columnExpandRatios
- Holds column expand rations for visible columns (by propertyId).
columnGenerators
java.util.HashMap<K,V> columnGenerators
- Holds column generators
pageLength
int pageLength
- Holds value of property pageLength. 0 disables paging.
currentPageFirstItemId
java.lang.Object currentPageFirstItemId
- Id the first item on the current page.
repairOnReAddAllRowsDataScrollPositionItemIndex
int repairOnReAddAllRowsDataScrollPositionItemIndex
currentPageFirstItemIndex
int currentPageFirstItemIndex
- Index of the first item on the current page.
currentPageFirstItemIndexOnLastPage
int currentPageFirstItemIndexOnLastPage
- Index of the "first" item on the last page if a user has used
setCurrentPageFirstItemIndex to scroll down. -1 if not set.
selectable
java.lang.Boolean selectable
- Holds value of property selectable.
columnHeaderMode
Table.ColumnHeaderMode columnHeaderMode
- Holds value of property columnHeaderMode.
rowHeaderMode
Table.RowHeaderMode rowHeaderMode
- Holds value of property rowHeaderMode.
columnFootersVisible
boolean columnFootersVisible
- Should the Table footer be visible?
pageBuffer
java.lang.Object[][] pageBuffer
- Page contents buffer used in buffered mode.
listenedProperties
java.util.HashSet<E> listenedProperties
- Set of properties listened - the list is kept to release the listeners
later.
visibleComponents
java.util.HashSet<E> visibleComponents
- Set of visible components - the is used for needsRepaint calculation.
actionHandlers
java.util.LinkedList<E> actionHandlers
- List of action handlers.
actionMapper
KeyMapper<V> actionMapper
- Action mapper.
fieldFactory
TableFieldFactory fieldFactory
- Table cell editor factory.
editable
boolean editable
- Is table editable.
sortAscending
boolean sortAscending
- Current sorting direction.
sortContainerPropertyId
java.lang.Object sortContainerPropertyId
- Currently table is sorted on this propertyId.
sortEnabled
boolean sortEnabled
- Is table sorting by the user enabled.
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
com.vaadin.shared.ui.MultiSelectMode multiSelectMode
rowCacheInvalidated
boolean rowCacheInvalidated
rowGenerator
Table.RowGenerator rowGenerator
associatedProperties
java.util.Map<K,V> associatedProperties
painted
boolean painted
propertyValueConverters
java.util.HashMap<K,V> propertyValueConverters
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
java.util.List<E> exceptionsDuringCachePopulation
isBeingPainted
boolean isBeingPainted
causes
java.lang.Throwable[] causes
table
Table table
previousWidth
int previousWidth
currentWidth
int currentWidth
columnPropertyId
java.lang.Object columnPropertyId
columnPropertyId
java.lang.Object columnPropertyId
htmlContentAllowed
boolean htmlContentAllowed
spanColumns
boolean spanColumns
text
java.lang.String[] text
columnPropertyId
java.lang.Object columnPropertyId
table
Table table
allowedItemIds
java.util.Set<E> allowedItemIds
components
java.util.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
java.util.HashMap<K,V> tabs
- Map containing information related to the tabs (caption, icon etc).
selected
Component selected
- Selected tab content component.
keyMapper
KeyMapper<V> keyMapper
- Mapper between server-side component instances (tab contents) and keys
given to the client that identify tabs.
closeHandler
TabSheet.CloseHandler closeHandler
- Handler to be called when a tab is closed.
rpc
TabSheet.TabsheetServerRpcImpl rpc
focusBlurRpc
FieldEvents.FocusAndBlurServerRpcImpl focusBlurRpc
tabState
com.vaadin.shared.ui.tabsheet.TabState tabState
defaultFocus
Component.Focusable defaultFocus
componentError
ErrorMessage componentError
itemIconAlts
java.util.HashMap<K,V> itemIconAlts
- Item icons alt texts.
expanded
java.util.HashSet<E> expanded
- Set of expanded nodes.
actionHandlers
java.util.LinkedList<E> actionHandlers
- List of action handlers.
actionMapper
KeyMapper<V> actionMapper
- Action mapper.
selectable
boolean selectable
- Is the tree selectable on the client side.
partialUpdate
boolean partialUpdate
- Flag to indicate sub-tree loading
expandedItemId
java.lang.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
com.vaadin.shared.ui.MultiSelectMode multiSelectMode
itemStyleGenerator
Tree.ItemStyleGenerator itemStyleGenerator
dropHandler
DropHandler dropHandler
collapsedItemId
java.lang.Object collapsedItemId
expandedItemId
java.lang.Object expandedItemId
rootId
java.lang.Object rootId
depthToCheck
int depthToCheck
tree
Tree tree
allowedItemIds
java.util.Set<E> allowedItemIds
cStrategy
com.vaadin.ui.TreeTable.ContainerStrategy cStrategy
focusedRowId
java.lang.Object focusedRowId
hierarchyColumnId
java.lang.Object hierarchyColumnId
toggledItemId
java.lang.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
java.lang.String leftColumnCaption
rightColumnCaption
java.lang.String rightColumnCaption
session
VaadinSession session
- The application to which this UI belongs
windows
java.util.LinkedHashSet<E> windows
- List of windows in this UI.
scrollIntoView
Component scrollIntoView
- The component that should be scrolled into view after the next repaint.
Null if nothing should be scrolled into view.
uiId
int uiId
- The id of this UI, used to find the server side instance of the UI form
which a request originates. A negative value indicates that the UI id has
not yet been assigned by the Application.
- See Also:
VaadinSession.getNextUIid()
actionManager
ActionManager actionManager
- Keeps track of the Actions added to this component, and manages the
painting and handling as well.
connectorTracker
ConnectorTracker connectorTracker
- Identifies the click event
page
Page page
loadingIndicatorConfiguration
LoadingIndicatorConfiguration loadingIndicatorConfiguration
scrollTop
int scrollTop
- Scroll Y position.
scrollLeft
int scrollLeft
- Scroll X position
rpc
com.vaadin.shared.ui.ui.UIServerRpc rpc
debugRpc
com.vaadin.shared.ui.ui.DebugWindowServerRpc debugRpc
lastHeartbeatTimestamp
long lastHeartbeatTimestamp
- Timestamp keeping track of the last heartbeat of this UI. Updated to the
current time whenever the application receives a heartbeat or UIDL
request from the client for this UI.
closing
boolean closing
tooltipConfiguration
TooltipConfiguration tooltipConfiguration
pushConfiguration
PushConfiguration pushConfiguration
notificationConfiguration
NotificationConfiguration notificationConfiguration
pendingFocus
Component.Focusable pendingFocus
- Component that should be focused after the next repaint. Null if no focus
change should take place.
resizeLazy
boolean resizeLazy
navigator
Navigator navigator
pushConnection
PushConnection pushConnection
localeService
LocaleService localeService
embedId
java.lang.String embedId
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
java.lang.String buttonCaption
progressListeners
java.util.LinkedHashSet<E> progressListeners
- ProgressListeners to which information about progress is sent during
upload
interrupted
boolean interrupted
notStarted
boolean notStarted
nextid
int nextid
streamVariable
StreamVariable streamVariable
filename
java.lang.String filename
reason
java.lang.Exception reason
length
long length
- Length of the received file.
type
java.lang.String type
- MIME type of the received file.
filename
java.lang.String filename
- Received file name.
filename
java.lang.String filename
type
java.lang.String type
length
long length
- Length of the received file.
rpc
com.vaadin.shared.ui.window.WindowServerRpc rpc
bringToFront
java.lang.Integer bringToFront
- Used to keep the right order of windows if multiple windows are brought
to front in a single changeset. If this is not used, the order is quite
random (depends on the order getting to dirty list. e.g. which window got
variable changes).
closeShortcut
Window.CloseShortcut closeShortcut
window
Window window
windowMode
com.vaadin.shared.ui.window.WindowMode windowMode
Package com.vaadin.ui.components.calendar |
date
java.util.Date date
- Date that was clicked.
calendarEvent
CalendarEvent calendarEvent
- Clicked source event.
calendarEvent
CalendarEvent calendarEvent
startTime
java.util.Date startTime
endTime
java.util.Date endTime
calendarEvent
CalendarEvent calendarEvent
- Index for the moved Schedule.Event.
newStart
java.util.Date newStart
- New starting date for the moved Calendar.Event.
start
java.util.Date start
- Calendar event's start date.
end
java.util.Date end
- Calendar event's end date.
monthlyMode
boolean monthlyMode
- Defines the event's view mode.
week
int week
- Target week.
year
int year
- Target year.
start
java.util.Date start
end
java.util.Date end
hasDropTime
boolean hasDropTime
eventSetChangeListeners
java.util.List<E> eventSetChangeListeners
- Listeners attached to the container
eventChangeListeners
java.util.List<E> eventChangeListeners
eventCache
java.util.List<E> eventCache
- The event cache contains the events previously created by
ContainerEventProvider.getEvents(Date, Date)
container
Container.Indexed container
- The container used as datasource
captionProperty
java.lang.Object captionProperty
- Container properties. Defaults based on using the
BasicEvent
helper class.
descriptionProperty
java.lang.Object descriptionProperty
startDateProperty
java.lang.Object startDateProperty
endDateProperty
java.lang.Object endDateProperty
styleNameProperty
java.lang.Object styleNameProperty
allDayProperty
java.lang.Object allDayProperty
Package com.vaadin.ui.components.calendar.event |
caption
java.lang.String caption
description
java.lang.String description
end
java.util.Date end
start
java.util.Date start
styleName
java.lang.String styleName
isAllDay
boolean isAllDay
eventList
java.util.List<E> eventList
listeners
java.util.List<E> listeners
source
CalendarEvent source
source
CalendarEventProvider source
Package com.vaadin.ui.components.calendar.handler |
Package com.vaadin.ui.components.colorpicker |
color
com.vaadin.shared.ui.colorpicker.Color color
rpc
com.vaadin.shared.ui.colorpicker.ColorPickerGradientServerRpc rpc
converter
AbstractColorPicker.Coordinates2Color converter
- The converter.
color
com.vaadin.shared.ui.colorpicker.Color color
- The foreground color.
x
int x
- The x-coordinate.
y
int y
- The y-coordinate.
rpc
com.vaadin.shared.ui.colorpicker.ColorPickerGridServerRpc rpc
x
int x
- The x-coordinate.
y
int y
- The y-coordinate.
rows
int rows
- The rows.
columns
int columns
- The columns.
colorGrid
com.vaadin.shared.ui.colorpicker.Color[][] colorGrid
- The color grid.
changedColors
java.util.Map<K,V> changedColors
- The changed colors.
tempHistory
java.util.concurrent.ArrayBlockingQueue<E> tempHistory
- Temporary color history for when the component is detached.
grid
ColorPickerGrid grid
- The grid.
tabs
TabSheet tabs
- The tabs.
rgbTab
Component rgbTab
hsvTab
Component hsvTab
swatchesTab
Component swatchesTab
layout
VerticalLayout layout
- The layout.
ok
Button ok
- The ok button.
cancel
Button cancel
- The cancel button.
resize
Button resize
- The resize button.
selectedColor
com.vaadin.shared.ui.colorpicker.Color selectedColor
- The selected color.
history
ColorPickerHistory history
- The history.
historyContainer
Layout historyContainer
- The history container.
rgbGradient
ColorPickerGradient rgbGradient
- The rgb gradient.
hsvGradient
ColorPickerGradient hsvGradient
- The hsv gradient.
redSlider
Slider redSlider
- The red slider.
greenSlider
Slider greenSlider
- The green slider.
blueSlider
Slider blueSlider
- The blue slider.
hueSlider
Slider hueSlider
- The hue slider.
saturationSlider
Slider saturationSlider
- The saturation slider.
valueSlider
Slider valueSlider
- The value slider.
rgbPreview
ColorPickerPreview rgbPreview
- The preview on the rgb tab.
hsvPreview
ColorPickerPreview hsvPreview
- The preview on the hsv tab.
selPreview
ColorPickerPreview selPreview
- The preview on the swatches tab.
colorSelect
ColorPickerSelect colorSelect
- The color select.
selectors
java.util.Set<E> selectors
- The selectors.
updatingColors
boolean updatingColors
- Set true while the slider values are updated after colorChange. When
true, valueChange reactions from the sliders are disabled, because
otherwise the set color may become corrupted as it is repeatedly re-set
in valueChangeListeners using values from sliders that may not have been
updated yet.
RGBConverter
AbstractColorPicker.Coordinates2Color RGBConverter
- RGB color converter
HSVConverter
AbstractColorPicker.Coordinates2Color HSVConverter
- HSV color converter
color
com.vaadin.shared.ui.colorpicker.Color color
- The color.
field
TextField field
- The field.
oldValue
java.lang.String oldValue
- The old value.
range
ComboBox range
- The range.
grid
ColorPickerGrid grid
- The grid.
Package com.vaadin.ui.declarative |
rootComponent
Component rootComponent
idToComponent
java.util.Map<K,V> idToComponent
localIdToComponent
java.util.Map<K,V> localIdToComponent
captionToComponent
java.util.Map<K,V> captionToComponent
componentToLocalId
java.util.Map<K,V> componentToLocalId
doc
org.jsoup.nodes.Document doc
packageToPrefix
java.util.Map<K,V> packageToPrefix
prefixToPackage
java.util.Map<K,V> prefixToPackage
defaultPrefixes
java.util.Map<K,V> defaultPrefixes
listeners
java.util.List<E> listeners
shouldWriteDataDelegate
ShouldWriteDataDelegate shouldWriteDataDelegate
localId
java.lang.String localId
component
Component component
context
DesignContext context
converterMap
java.util.Map<K,V> converterMap
stringEnumConverter
Converter<PRESENTATION,MODEL> stringEnumConverter
stringObjectConverter
Converter<PRESENTATION,MODEL> stringObjectConverter
bindTarget
java.lang.Object bindTarget
fieldMap
java.util.Map<K,V> fieldMap
Package com.vaadin.ui.declarative.converters |
keyCodeMap
java.util.Map<K,V> keyCodeMap
presentationMap
java.util.Map<K,V> presentationMap
type
java.lang.Class<T> type
staticMethodName
java.lang.String staticMethodName
Package com.vaadin.ui.renderers |
callbackHelper
JavaScriptCallbackHelper callbackHelper
itemId
java.lang.Object itemId
column
Grid.Column column
locale
java.util.Locale locale
formatString
java.lang.String formatString
dateFormat
java.text.DateFormat dateFormat
locale
java.util.Locale locale
numberFormat
java.text.NumberFormat numberFormat
formatString
java.lang.String formatString
instance
java.lang.ref.WeakReference<T> instance
inheritable
boolean inheritable
Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.