Serialized Form


Package com.vaadin

Class com.vaadin.Application extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.Application.ApplicationError extends Object implements Serializable

Serialized Fields

throwable

Throwable throwable

Class com.vaadin.Application.CustomizedSystemMessages extends Application.SystemMessages implements Serializable

Class com.vaadin.Application.SystemMessages extends Object implements Serializable

Serialized Fields

sessionExpiredURL

String sessionExpiredURL

sessionExpiredNotificationEnabled

boolean sessionExpiredNotificationEnabled

sessionExpiredCaption

String sessionExpiredCaption

sessionExpiredMessage

String sessionExpiredMessage

communicationErrorURL

String communicationErrorURL

communicationErrorNotificationEnabled

boolean communicationErrorNotificationEnabled

communicationErrorCaption

String communicationErrorCaption

communicationErrorMessage

String communicationErrorMessage

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

Class com.vaadin.Application.UserChangeEvent extends EventObject implements Serializable

Serialized Fields

newUser

Object newUser
New user of the application.


prevUser

Object prevUser
Previous user of the application.

Class com.vaadin.Application.WindowAttachEvent extends EventObject implements Serializable

Serialized Fields

window

Window window

Class com.vaadin.Application.WindowDetachEvent extends EventObject implements Serializable

Serialized Fields

window

Window window

Package com.vaadin.data

Class com.vaadin.data.Buffered.SourceException extends RuntimeException implements Serializable

Serialized Fields

source

Buffered source
Source class implementing the buffered interface


causes

Throwable[] causes
Original cause of the source exception

Class com.vaadin.data.Property.ConversionException extends RuntimeException implements Serializable

Class com.vaadin.data.Property.ReadOnlyException extends RuntimeException implements Serializable

Class com.vaadin.data.Validator.EmptyValueException extends Validator.InvalidValueException implements Serializable

Class com.vaadin.data.Validator.InvalidValueException extends RuntimeException implements Serializable

Serialized Fields

causes

Validator.InvalidValueException[] causes
Array of validation errors that are causing the problem.


Package com.vaadin.data.util

Class com.vaadin.data.util.BeanItem extends PropertysetItem implements Serializable

Serialized Fields

bean

Object bean
The bean which this Item is based on.

Class com.vaadin.data.util.BeanItemContainer extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

filteredItems

ListSet<E> filteredItems
The filteredItems variable contains the items that are visible outside the container. If filters are enabled this contains a subset of allItems, if no filters are set this contains the same items as allItems.


allItems

ListSet<E> allItems
The allItems variable always contains all the items in the container. Some or all of these are also in the filteredItems list.


beanToItem

Map<K,V> beanToItem
Maps all pojos (item ids) in the container (including filtered) to their corresponding BeanItem.


type

Class<T> type

itemSetChangeListeners

List<E> itemSetChangeListeners

filters

Set<E> filters

itemSorter

ItemSorter itemSorter
The item sorter which is used for sorting the container.

Class com.vaadin.data.util.ContainerHierarchicalWrapper extends Object implements Serializable

Serialized Fields

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 ?

Class com.vaadin.data.util.ContainerOrderedWrapper extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.data.util.DefaultItemSorter extends Object implements Serializable

Serialized Fields

sortPropertyIds

Object[] sortPropertyIds

sortDirections

boolean[] sortDirections

container

Container container

propertyValueComparator

Comparator<T> propertyValueComparator

Class com.vaadin.data.util.DefaultItemSorter.DefaultPropertyValueComparator extends Object implements Serializable

Class com.vaadin.data.util.FilesystemContainer extends Object implements Serializable

Serialized Fields

roots

File[] roots

filter

FilenameFilter filter

recursive

boolean recursive

Class com.vaadin.data.util.FilesystemContainer.FileExtensionFilter extends Object implements Serializable

Serialized Fields

filter

String filter

Class com.vaadin.data.util.FilesystemContainer.FileItem extends Object implements Serializable

Serialized Fields

file

File file
The wrapped file.

Class com.vaadin.data.util.Filter extends Object implements Serializable

Serialized Fields

propertyId

Object propertyId

filterString

String filterString

ignoreCase

boolean ignoreCase

onlyMatchPrefix

boolean onlyMatchPrefix

Class com.vaadin.data.util.HierarchicalContainer extends IndexedContainer implements Serializable

Serialized Fields

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.


filterOverride

Set<E> filterOverride

Class com.vaadin.data.util.IndexedContainer extends Object implements Serializable

Serialized Fields

itemIds

ArrayList<E> itemIds
Linked list of ordered Item IDs.


filteredItemIds

LinkedHashSet<E> filteredItemIds
List of item ids that passes the filtering


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.


propertySetChangeListeners

LinkedList<E> propertySetChangeListeners
List of all Property set change event listeners.


itemSetChangeListeners

LinkedList<E> itemSetChangeListeners
List of all container Item set change event listeners.


itemSorter

ItemSorter itemSorter
The item sorter which is used for sorting the container.


filters

HashSet<E> filters
Filters that are applied to the container to limit the items visible in it


defaultPropertyValues

HashMap<K,V> defaultPropertyValues

nextGeneratedItemId

int nextGeneratedItemId

Class com.vaadin.data.util.IndexedContainer.ItemSetChangeEvent extends EventObject implements Serializable

Serialized Fields

addedItemIndex

int addedItemIndex

Class com.vaadin.data.util.ListSet extends ArrayList<E> implements Serializable

Serialized Fields

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.

Class com.vaadin.data.util.MethodProperty extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Throws:
IOException
Serialized Fields

readOnly

boolean readOnly
Is the MethodProperty read-only?


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.


readOnlyStatusChangeListeners

LinkedList<E> readOnlyStatusChangeListeners
List of listeners who are interested in the read-only status changes of the MethodProperty


valueChangeListeners

LinkedList<E> valueChangeListeners
List of listeners who are interested in the value changes of the MethodProperty

Class com.vaadin.data.util.MethodProperty.MethodException extends RuntimeException implements Serializable

Serialized Fields

cause

Throwable cause
Cause of the method exception

Class com.vaadin.data.util.ObjectProperty extends Object implements Serializable

Serialized Fields

readOnly

boolean readOnly
A boolean value storing the Property's read-only status information.


value

Object value
The value contained by the Property.


type

Class<T> type
Data type of the Property's value.


valueChangeListeners

LinkedList<E> valueChangeListeners
Internal list of registered value change listeners.


readOnlyStatusChangeListeners

LinkedList<E> readOnlyStatusChangeListeners
Internal list of registered read-only status change listeners.

Class com.vaadin.data.util.PropertyFormatter extends Object implements Serializable

Serialized Fields

valueChangeListeners

LinkedList<E> valueChangeListeners
Internal list of registered value change listeners.


readOnlyStatusChangeListeners

LinkedList<E> readOnlyStatusChangeListeners
Internal list of registered read-only status change listeners.


dataSource

Property dataSource
Datasource that stores the actual value.

Class com.vaadin.data.util.PropertysetItem extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.data.util.QueryContainer extends Object implements Serializable

Serialized Fields

resultSetType

int resultSetType

resultSetConcurrency

int resultSetConcurrency

queryStatement

String queryStatement

connection

Connection connection

result

ResultSet result

propertyIds

Collection<E> propertyIds

propertyTypes

HashMap<K,V> propertyTypes

size

int size

statement

Statement statement

Class com.vaadin.data.util.TextFileProperty extends Object implements Serializable

Serialized Fields

file

File file

readonly

boolean readonly

charset

Charset charset

valueChangeListeners

LinkedList<E> valueChangeListeners

Package com.vaadin.data.validator

Class com.vaadin.data.validator.AbstractStringValidator extends AbstractValidator implements Serializable

Class com.vaadin.data.validator.AbstractValidator extends Object implements Serializable

Serialized Fields

errorMessage

String errorMessage
Error message.

Class com.vaadin.data.validator.CompositeValidator extends AbstractValidator implements Serializable

Serialized Fields

mode

int mode
Operation mode.


validators

List<E> validators
List of contained validators.

Class com.vaadin.data.validator.DoubleValidator extends AbstractStringValidator implements Serializable

Class com.vaadin.data.validator.EmailValidator extends RegexpValidator implements Serializable

Class com.vaadin.data.validator.IntegerValidator extends AbstractStringValidator implements Serializable

Class com.vaadin.data.validator.NullValidator extends Object implements Serializable

Serialized Fields

onlyNullAllowed

boolean onlyNullAllowed

errorMessage

String errorMessage

Class com.vaadin.data.validator.RegexpValidator extends AbstractStringValidator implements Serializable

Serialized Fields

pattern

Pattern pattern

complete

boolean complete

Class com.vaadin.data.validator.StringLengthValidator extends AbstractValidator implements Serializable

Serialized Fields

minLength

int minLength

maxLength

int maxLength

allowNull

boolean allowNull

Package com.vaadin.event

Class com.vaadin.event.Action extends Object implements Serializable

Serialized Fields

caption

String caption
Action title.


icon

Resource icon
Action icon.

Class com.vaadin.event.ActionManager extends Object implements Serializable

serialVersionUID: 1641868163608066491L

Serialized Fields

ownActions

HashSet<E> ownActions
List of action handlers


actionHandlers

HashSet<E> actionHandlers
List of action handlers


actionMapper

KeyMapper actionMapper
Action mapper


viewer

Component viewer

Class com.vaadin.event.EventRouter extends Object implements Serializable

Serialized Fields

listenerList

Set<E> listenerList
List of registered listeners.

Class com.vaadin.event.FieldEvents.BlurEvent extends Component.Event implements Serializable

Class com.vaadin.event.FieldEvents.FocusEvent extends Component.Event implements Serializable

Class com.vaadin.event.ItemClickEvent extends MouseEvents.ClickEvent implements Serializable

Serialized Fields

item

Item item

itemId

Object itemId

propertyId

Object propertyId

Class com.vaadin.event.LayoutEvents.LayoutClickEvent extends MouseEvents.ClickEvent implements Serializable

Serialized Fields

childComponent

Component childComponent

Class com.vaadin.event.ListenerMethod extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Throws:
IOException
Serialized Fields

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.


object

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

Class com.vaadin.event.ListenerMethod.MethodException extends RuntimeException implements Serializable

Serialized Fields

cause

Throwable cause

message

String message

Class com.vaadin.event.MouseEvents.ClickEvent extends Component.Event implements Serializable

Serialized Fields

details

MouseEventDetails details

Class com.vaadin.event.MouseEvents.DoubleClickEvent extends Component.Event implements Serializable

Class com.vaadin.event.ShortcutAction extends Action implements Serializable

Serialized Fields

keyCode

int keyCode

modifiers

int[] modifiers

Class com.vaadin.event.ShortcutListener extends ShortcutAction implements Serializable

serialVersionUID: 1L


Package com.vaadin.event.dd

Class com.vaadin.event.dd.DragAndDropEvent extends Object implements Serializable

Serialized Fields

transferable

Transferable transferable

dropTargetDetails

TargetDetails dropTargetDetails

Class com.vaadin.event.dd.TargetDetailsImpl extends Object implements Serializable

Serialized Fields

data

HashMap<K,V> data

dropTarget

DropTarget dropTarget

Package com.vaadin.event.dd.acceptcriteria

Class com.vaadin.event.dd.acceptcriteria.AcceptAll extends ClientSideCriterion implements Serializable

serialVersionUID: 7406683402153141461L

Class com.vaadin.event.dd.acceptcriteria.And extends ClientSideCriterion implements Serializable

serialVersionUID: -5242574480825471748L

Serialized Fields

criteria

ClientSideCriterion[] criteria

Class com.vaadin.event.dd.acceptcriteria.ClientSideCriterion extends Object implements Serializable

Class com.vaadin.event.dd.acceptcriteria.ContainsDataFlavor extends ClientSideCriterion implements Serializable

Serialized Fields

dataFlavorId

String dataFlavorId

Class com.vaadin.event.dd.acceptcriteria.Not extends ClientSideCriterion implements Serializable

serialVersionUID: 1131422338558613244L

Serialized Fields

acceptCriterion

AcceptCriterion acceptCriterion

Class com.vaadin.event.dd.acceptcriteria.Or extends ClientSideCriterion implements Serializable

serialVersionUID: 1L

Serialized Fields

criteria

AcceptCriterion[] criteria

Class com.vaadin.event.dd.acceptcriteria.ServerSideCriterion extends Object implements Serializable

serialVersionUID: 2128510128911628902L

Class com.vaadin.event.dd.acceptcriteria.SourceIs extends ClientSideCriterion implements Serializable

Serialized Fields

component

Component[] component

Class com.vaadin.event.dd.acceptcriteria.SourceIsTarget extends ClientSideCriterion implements Serializable

serialVersionUID: -451399314705532584L

Class com.vaadin.event.dd.acceptcriteria.TargetDetailIs extends ClientSideCriterion implements Serializable

serialVersionUID: 763165450054331246L

Serialized Fields

propertyName

String propertyName

value

Object value

Package com.vaadin.service

Class com.vaadin.service.FileTypeResolver extends Object implements Serializable


Package com.vaadin.terminal

Class com.vaadin.terminal.ClassResource extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.terminal.CompositeErrorMessage extends Object implements Serializable

Serialized Fields

errors

List<E> errors
Array of all the errors.


level

int level
Level of the error.

Class com.vaadin.terminal.DownloadStream extends Object implements Serializable

Serialized Fields

stream

InputStream stream

contentType

String contentType

fileName

String fileName

params

Map<K,V> params

cacheTime

long cacheTime

bufferSize

int bufferSize

Class com.vaadin.terminal.ExternalResource extends Object implements Serializable

Serialized Fields

sourceURL

String sourceURL
Url of the download.

Class com.vaadin.terminal.FileResource extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.terminal.KeyMapper extends Object implements Serializable

Serialized Fields

lastKey

int lastKey

objectKeyMap

Hashtable<K,V> objectKeyMap

keyObjectMap

Hashtable<K,V> keyObjectMap

Class com.vaadin.terminal.Paintable.RepaintRequestEvent extends EventObject implements Serializable

Class com.vaadin.terminal.PaintException extends IOException implements Serializable

Class com.vaadin.terminal.StreamResource extends Object implements Serializable

Serialized Fields

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.

Class com.vaadin.terminal.SystemError extends RuntimeException implements Serializable

Serialized Fields

cause

Throwable cause
The cause of the system error. The cause is stored separately as JDK 1.3 does not support causes natively.

Class com.vaadin.terminal.ThemeResource extends Object implements Serializable

Serialized Fields

resourceID

String resourceID
Id of the terminal managed resource.

Class com.vaadin.terminal.UserError extends Object implements Serializable

Serialized Fields

mode

int mode
Content mode.


msg

String msg
Message in content mode.


level

int level
Error level.


Package com.vaadin.terminal.gwt.client

Class com.vaadin.terminal.gwt.client.LocaleNotLoadedException extends Exception implements Serializable

Class com.vaadin.terminal.gwt.client.VBrowserDetails extends Object implements Serializable

Serialized Fields

isGecko

boolean isGecko

isWebKit

boolean isWebKit

isPresto

boolean isPresto

isSafari

boolean isSafari

isChrome

boolean isChrome

isFirefox

boolean isFirefox

isOpera

boolean isOpera

isIE

boolean isIE

isWindows

boolean isWindows

isMacOSX

boolean isMacOSX

isLinux

boolean isLinux

browserEngineVersion

float browserEngineVersion

browserMajorVersion

int browserMajorVersion

browserMinorVersion

int browserMinorVersion

Package com.vaadin.terminal.gwt.client.ui

Class com.vaadin.terminal.gwt.client.ui.VMarginInfo extends Object implements Serializable

Serialized Fields

bitMask

int bitMask

Class com.vaadin.terminal.gwt.client.ui.VNotification.HideEvent extends EventObject implements Serializable


Package com.vaadin.terminal.gwt.server

Class com.vaadin.terminal.gwt.server.AbstractApplicationPortlet.RequestError extends Object implements Serializable

Serialized Fields

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractApplicationServlet extends HttpServlet implements Serializable

Serialized Fields

applicationProperties

Properties applicationProperties

productionMode

boolean productionMode

resourcePath

String resourcePath

resourceCacheTime

int resourceCacheTime

Class com.vaadin.terminal.gwt.server.AbstractApplicationServlet.ParameterHandlerErrorImpl extends Object implements Serializable

Serialized Fields

owner

ParameterHandler owner

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractApplicationServlet.RequestError extends Object implements Serializable

Serialized Fields

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractApplicationServlet.URIHandlerErrorImpl extends Object implements Serializable

Serialized Fields

owner

URIHandler owner

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractCommunicationManager extends Object implements Serializable

Serialized Fields

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

typeToKey

HashMap<K,V> typeToKey

nextTypeKey

int nextTypeKey

Class com.vaadin.terminal.gwt.server.AbstractCommunicationManager.ErrorHandlerErrorEvent extends Object implements Serializable

Serialized Fields

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractCommunicationManager.InvalidUIDLSecurityKeyException extends GeneralSecurityException implements Serializable

Class com.vaadin.terminal.gwt.server.AbstractCommunicationManager.URIHandlerErrorImpl extends Object implements Serializable

Serialized Fields

owner

URIHandler owner

throwable

Throwable throwable

Class com.vaadin.terminal.gwt.server.AbstractWebApplicationContext extends Object implements Serializable

Serialized Fields

listeners

Collection<E> listeners

applications

HashSet<E> applications

browser

WebBrowser browser

applicationToAjaxAppMgrMap

HashMap<K,V> applicationToAjaxAppMgrMap

Class com.vaadin.terminal.gwt.server.ApplicationPortlet extends Object implements Serializable

Serialized Fields

app

String app

style

String style

portletWidgetset

String portletWidgetset

Class com.vaadin.terminal.gwt.server.ApplicationRunnerServlet extends AbstractApplicationServlet implements Serializable

Serialized Fields

defaultPackages

String[] defaultPackages
The name of the application class currently used. Only valid within one request.


request

ThreadLocal<T> request

Class com.vaadin.terminal.gwt.server.ApplicationServlet extends AbstractApplicationServlet implements Serializable

Serialized Fields

applicationClass

Class<T> applicationClass

Class com.vaadin.terminal.gwt.server.ChangeVariablesErrorEvent extends Object implements Serializable

Serialized Fields

throwable

Throwable throwable

component

Component component

variableChanges

Map<K,V> variableChanges

Class com.vaadin.terminal.gwt.server.CommunicationManager extends AbstractCommunicationManager implements Serializable

Class com.vaadin.terminal.gwt.server.ComponentSizeValidator extends Object implements Serializable

Class com.vaadin.terminal.gwt.server.ComponentSizeValidator.FileLocation extends Object implements Serializable

Serialized Fields

method

String method

file

String file

className

String className

classNameSimple

String classNameSimple

lineNumber

int lineNumber

Class com.vaadin.terminal.gwt.server.ComponentSizeValidator.InvalidLayout extends Object implements Serializable

Serialized Fields

component

Component component

invalidHeight

boolean invalidHeight

invalidWidth

boolean invalidWidth

subErrors

Vector<E> subErrors

Class com.vaadin.terminal.gwt.server.DragAndDropService extends Object implements Serializable

Serialized Fields

lastVisitId

int lastVisitId

currentEventId

int currentEventId

lastVisitAccepted

boolean lastVisitAccepted

dragEvent

DragAndDropEvent dragEvent

manager

AbstractCommunicationManager manager

acceptCriterion

AcceptCriterion acceptCriterion

Class com.vaadin.terminal.gwt.server.GAEApplicationServlet extends ApplicationServlet implements Serializable

Class com.vaadin.terminal.gwt.server.HttpUploadStream extends Object implements Serializable

Serialized Fields

streamName

String streamName
Holds value of property variableName.


contentName

String contentName

contentType

String contentType

stream

InputStream stream
Holds value of property variableValue.

Class com.vaadin.terminal.gwt.server.JsonPaintTarget extends Object implements Serializable

Serialized Fields

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

Class com.vaadin.terminal.gwt.server.PortletApplicationContext extends WebApplicationContext implements Serializable

Serialized Fields

portletSession

javax.portlet.PortletSession portletSession

portletListeners

Map<K,V> portletListeners

portletToApplication

Map<K,V> portletToApplication

Class com.vaadin.terminal.gwt.server.PortletApplicationContext2 extends AbstractWebApplicationContext implements Serializable

Serialized Fields

portletListeners

Map<K,V> portletListeners

portletWindowIdToApplicationMap

HashMap<K,V> portletWindowIdToApplicationMap

response

javax.portlet.PortletResponse response

eventActionDestinationMap

Map<K,V> eventActionDestinationMap

eventActionValueMap

Map<K,V> eventActionValueMap

sharedParameterActionNameMap

Map<K,V> sharedParameterActionNameMap

sharedParameterActionValueMap

Map<K,V> sharedParameterActionValueMap

Class com.vaadin.terminal.gwt.server.PortletCommunicationManager extends AbstractCommunicationManager implements Serializable

Serialized Fields

dummyURL

String dummyURL

Class com.vaadin.terminal.gwt.server.SessionExpiredException extends Exception implements Serializable

Class com.vaadin.terminal.gwt.server.SystemMessageException extends RuntimeException implements Serializable

Serialized Fields

cause

Throwable cause
Cause of the method exception

Class com.vaadin.terminal.gwt.server.WebApplicationContext extends AbstractWebApplicationContext implements Serializable

Class com.vaadin.terminal.gwt.server.WebBrowser extends Object implements Serializable

Serialized Fields

screenHeight

int screenHeight

screenWidth

int screenWidth

browserApplication

String browserApplication

locale

Locale locale

address

String address

secureConnection

boolean secureConnection

browserDetails

VBrowserDetails browserDetails

Package com.vaadin.ui

Class com.vaadin.ui.AbsoluteLayout extends AbstractLayout implements Serializable

Serialized Fields

components

Collection<E> components

componentToCoordinates

Map<K,V> componentToCoordinates

Class com.vaadin.ui.AbsoluteLayout.ComponentPosition extends Object implements Serializable

Serialized Fields

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

Class com.vaadin.ui.AbstractComponent extends Object implements Serializable

Serialized Fields

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

Class com.vaadin.ui.AbstractComponentContainer extends AbstractComponent implements Serializable

Class com.vaadin.ui.AbstractField extends AbstractComponent implements Serializable

Serialized Fields

value

Object value
Value of the abstract field.


dataSource

Property dataSource
Connected data-source.


validators

LinkedList<E> validators
The list of validators.


writeTroughMode

boolean writeTroughMode
Auto commit mode.


readTroughMode

boolean readTroughMode
Reads the value from data-source, when it is not modified.


modified

boolean modified
Is the field modified but not committed.


suppressValueChangePropagation

boolean suppressValueChangePropagation
Should value change event propagation from property data source to listeners of the field be suppressed. This is used internally while the field makes changes to the property value.


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.

Class com.vaadin.ui.AbstractField.FocusShortcut extends ShortcutListener implements Serializable

Serialized Fields

focusable

Component.Focusable focusable

Class com.vaadin.ui.AbstractField.ReadOnlyStatusChangeEvent extends Component.Event implements Serializable

Class com.vaadin.ui.AbstractLayout extends AbstractComponentContainer implements Serializable

Serialized Fields

margins

Layout.MarginInfo margins

Class com.vaadin.ui.AbstractOrderedLayout extends AbstractLayout implements Serializable

Serialized Fields

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.

Class com.vaadin.ui.AbstractSelect extends AbstractField implements Serializable

Serialized Fields

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

Class com.vaadin.ui.AbstractSelect.AbstractSelectTargetDetails extends TargetDetailsImpl implements Serializable

Serialized Fields

idOver

Object idOver
The item id over which the drag event happened.

Class com.vaadin.ui.AbstractSelect.AcceptItem extends com.vaadin.ui.AbstractSelect.AbstractItemSetCriterion implements Serializable

Class com.vaadin.ui.AbstractSelect.CaptionChangeListener extends Object implements Serializable

Serialized Fields

captionChangeNotifiers

HashSet<E> captionChangeNotifiers

Class com.vaadin.ui.AbstractSelect.DefaultNewItemHandler extends Object implements Serializable

Class com.vaadin.ui.AbstractSelect.TargetItemIs extends com.vaadin.ui.AbstractSelect.AbstractItemSetCriterion implements Serializable

Class com.vaadin.ui.AbstractSelect.VerticalLocationIs extends TargetDetailIs implements Serializable

Class com.vaadin.ui.Accordion extends TabSheet implements Serializable

Class com.vaadin.ui.Alignment extends Object implements Serializable

Serialized Fields

bitMask

int bitMask

Class com.vaadin.ui.AlignmentUtils extends Object implements Serializable

Class com.vaadin.ui.BaseFieldFactory extends Object implements Serializable

Class com.vaadin.ui.Button extends AbstractField implements Serializable

Serialized Fields

switchMode

boolean switchMode

clickShortcut

Button.ClickShortcut clickShortcut

Class com.vaadin.ui.Button.ClickEvent extends Component.Event implements Serializable

Class com.vaadin.ui.Button.ClickShortcut extends ShortcutListener implements Serializable

Serialized Fields

button

Button button

Class com.vaadin.ui.CheckBox extends Button implements Serializable

Class com.vaadin.ui.ComboBox extends Select implements Serializable

Serialized Fields

inputPrompt

String inputPrompt

Class com.vaadin.ui.Component.ErrorEvent extends Component.Event implements Serializable

Serialized Fields

message

ErrorMessage message

Class com.vaadin.ui.Component.Event extends EventObject implements Serializable

Class com.vaadin.ui.ComponentContainer.ComponentAttachEvent extends Component.Event implements Serializable

Serialized Fields

component

Component component

Class com.vaadin.ui.ComponentContainer.ComponentDetachEvent extends Component.Event implements Serializable

Serialized Fields

component

Component component

Class com.vaadin.ui.CssLayout extends AbstractLayout implements Serializable

Serialized Fields

components

LinkedList<E> components
Custom layout slots containing the components.

Class com.vaadin.ui.CustomComponent extends AbstractComponentContainer implements Serializable

Serialized Fields

root

Component root
The root component implementing the custom component.


componentType

String componentType
Type of the component.

Class com.vaadin.ui.CustomLayout extends AbstractLayout implements Serializable

Serialized Fields

slots

HashMap<K,V> slots
Custom layout slots containing the components.


templateContents

String templateContents

templateName

String templateName

Class com.vaadin.ui.DateField extends AbstractField implements Serializable

Serialized Fields

type

String type
Specified widget type.


resolution

int resolution
Specified smallest modifiable unit.


dateFormat

String dateFormat
Overridden format string


lenient

boolean lenient

showISOWeekNumbers

boolean showISOWeekNumbers
Determines if week numbers are shown in the date selector.

Class com.vaadin.ui.DefaultFieldFactory extends Object implements Serializable

Class com.vaadin.ui.DragAndDropWrapper extends CustomComponent implements Serializable

Serialized Fields

receivers

Map<K,V> receivers

dragStartMode

DragAndDropWrapper.DragStartMode dragStartMode

dropHandler

DropHandler dropHandler

Class com.vaadin.ui.DragAndDropWrapper.WrapperTargetDetails extends TargetDetailsImpl implements Serializable

Class com.vaadin.ui.Embedded extends AbstractComponent implements Serializable

Serialized Fields

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

Class com.vaadin.ui.ExpandLayout extends OrderedLayout implements Serializable

Serialized Fields

expanded

Component expanded
Deprecated. 

Class com.vaadin.ui.Field.ValueChangeEvent extends Component.Event implements Serializable

Class com.vaadin.ui.Form extends AbstractField implements Serializable

Serialized Fields

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.


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.

Class com.vaadin.ui.FormLayout extends OrderedLayout implements Serializable

Class com.vaadin.ui.GridLayout extends AbstractLayout implements Serializable

Serialized Fields

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

Class com.vaadin.ui.GridLayout.Area extends Object implements Serializable

Serialized Fields

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 on the area.

Class com.vaadin.ui.GridLayout.OutOfBoundsException extends RuntimeException implements Serializable

Serialized Fields

areaOutOfBounds

GridLayout.Area areaOutOfBounds

Class com.vaadin.ui.GridLayout.OverlapsException extends RuntimeException implements Serializable

Serialized Fields

existingArea

GridLayout.Area existingArea

Class com.vaadin.ui.HorizontalLayout extends AbstractOrderedLayout implements Serializable

Class com.vaadin.ui.InlineDateField extends DateField implements Serializable

Class com.vaadin.ui.Label extends AbstractComponent implements Serializable

Serialized Fields

dataSource

Property dataSource

contentMode

int contentMode

Class com.vaadin.ui.Label.ValueChangeEvent extends Component.Event implements Serializable

Class com.vaadin.ui.Layout.MarginInfo extends VMarginInfo implements Serializable

Class com.vaadin.ui.Link extends AbstractComponent implements Serializable

Serialized Fields

resource

Resource resource

targetName

String targetName

targetBorder

int targetBorder

targetWidth

int targetWidth

targetHeight

int targetHeight

Class com.vaadin.ui.ListSelect extends AbstractSelect implements Serializable

Serialized Fields

columns

int columns

rows

int rows

Class com.vaadin.ui.LoginForm extends CustomComponent implements Serializable

Serialized Fields

iframe

Embedded iframe

loginPage

ApplicationResource loginPage

paramHandler

ParameterHandler paramHandler

uriHandler

URIHandler uriHandler

window

Window window

Class com.vaadin.ui.LoginForm.LoginEvent extends Component.Event implements Serializable

Serialized Fields

params

Map<K,V> params

Class com.vaadin.ui.MenuBar extends AbstractComponent implements Serializable

Serialized Fields

menuItems

List<E> menuItems

collapseItems

boolean collapseItems
Deprecated. 
See Also:
MenuBar.setCollapse(boolean)

submenuIcon

Resource submenuIcon
Deprecated. 
See Also:
MenuBar.setSubmenuIcon(Resource)

moreItem

MenuBar.MenuItem moreItem

Class com.vaadin.ui.MenuBar.MenuItem extends Object implements Serializable

Serialized Fields

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

Class com.vaadin.ui.NativeButton extends Button implements Serializable

Class com.vaadin.ui.NativeSelect extends AbstractSelect implements Serializable

Serialized Fields

columns

int columns

Class com.vaadin.ui.OptionGroup extends AbstractSelect implements Serializable

Class com.vaadin.ui.OrderedLayout extends AbstractOrderedLayout implements Serializable

Serialized Fields

orientation

int orientation
Deprecated. 
Orientation of the layout.

Class com.vaadin.ui.Panel extends AbstractComponentContainer implements Serializable

Serialized Fields

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.

Class com.vaadin.ui.PopupDateField extends DateField implements Serializable

Class com.vaadin.ui.PopupView extends AbstractComponentContainer implements Serializable

Serialized Fields

content

PopupView.Content content

hideOnMouseOut

boolean hideOnMouseOut

visibleComponent

Component visibleComponent

Class com.vaadin.ui.PopupView.PopupVisibilityEvent extends Component.Event implements Serializable

Class com.vaadin.ui.ProgressIndicator extends AbstractField implements Serializable

Serialized Fields

indeterminate

boolean indeterminate

dataSource

Property dataSource

pollingInterval

int pollingInterval

Class com.vaadin.ui.RichTextArea extends TextField implements Serializable

Class com.vaadin.ui.Select extends AbstractSelect implements Serializable

Serialized Fields

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

filteredOptions

List<E> filteredOptions

optionRequest

boolean optionRequest
Flag to indicate that request repaint is called by filter request only

Class com.vaadin.ui.Slider extends AbstractField implements Serializable

Serialized Fields

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

Class com.vaadin.ui.Slider.ValueOutOfBoundsException extends Exception implements Serializable

Serialized Fields

value

Double value

Class com.vaadin.ui.SplitPanel extends AbstractLayout implements Serializable

Serialized Fields

firstComponent

Component firstComponent

secondComponent

Component secondComponent

orientation

int orientation
Orientation of the layout.


pos

int pos

posUnit

int posUnit

locked

boolean locked

Class com.vaadin.ui.SplitPanel.SplitterClickEvent extends MouseEvents.ClickEvent implements Serializable

Class com.vaadin.ui.Table extends AbstractSelect implements Serializable

Serialized Fields

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.


collapsedColumns

HashSet<E> collapsedColumns
Holds propertyIds of currently collapsed columns.


columnHeaders

HashMap<K,V> columnHeaders
Holds headers 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 (Integer) or expand ratios (Float) 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.


selectable

boolean selectable
Holds value of property selectable.


columnHeaderMode

int columnHeaderMode
Holds value of property columnHeaderMode.


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


alwaysRecalculateColumnWidths

boolean alwaysRecalculateColumnWidths

cacheRate

double cacheRate

dragMode

Table.TableDragMode dragMode

dropHandler

DropHandler dropHandler

Class com.vaadin.ui.Table.TableDropCriterion extends ServerSideCriterion implements Serializable

Serialized Fields

table

Table table

allowedItemIds

Set<E> allowedItemIds

Class com.vaadin.ui.TabSheet extends AbstractComponentContainer implements Serializable

Serialized Fields

components

LinkedList<E> components
Linked list of component tabs.


tabs

HashMap<K,V> tabs
Map containing information related to the tabs (caption, icon etc).


selected

Component selected
Selected tab.


keyMapper

KeyMapper keyMapper

tabsHidden

boolean tabsHidden
Holds the value of property tabsHIdden.


paintedTabs

HashSet<E> paintedTabs

closeHandler

TabSheet.CloseHandler closeHandler

Class com.vaadin.ui.TabSheet.SelectedTabChangeEvent extends Component.Event implements Serializable

Class com.vaadin.ui.TabSheet.TabSheetTabImpl extends Object implements Serializable

Serialized Fields

caption

String caption

icon

Resource icon

enabled

boolean enabled

visible

boolean visible

closable

boolean closable

description

String description

componentError

ErrorMessage componentError

Class com.vaadin.ui.TextField extends AbstractField implements Serializable

Serialized Fields

format

Format format
Value formatter used to format the string contents.


columns

int columns
Number of visible columns in the TextField.


rows

int rows
Number of visible rows in a multiline TextField. Value 0 implies a single-line text-editor.


wordwrap

boolean wordwrap
Tells if word-wrapping should be used in multiline mode.


secret

boolean secret
Tells if input is used to enter sensitive information that is not echoed to display. Typically passwords.


nullRepresentation

String nullRepresentation
Null representation.


nullSettingAllowed

boolean nullSettingAllowed
Is setting to null from non-null value allowed by setting with null representation .


inputPrompt

String inputPrompt

maxLength

int maxLength
Maximum character count in text field.

Class com.vaadin.ui.Tree extends AbstractSelect implements Serializable

Serialized Fields

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.


dragMode

Tree.TreeDragMode dragMode

itemStyleGenerator

Tree.ItemStyleGenerator itemStyleGenerator

dropHandler

DropHandler dropHandler

Class com.vaadin.ui.Tree.CollapseEvent extends Component.Event implements Serializable

Serialized Fields

collapsedItemId

Object collapsedItemId

Class com.vaadin.ui.Tree.ExpandEvent extends Component.Event implements Serializable

Serialized Fields

expandedItemId

Object expandedItemId

Class com.vaadin.ui.Tree.TargetInSubtree extends ClientSideCriterion implements Serializable

Serialized Fields

rootId

Object rootId

depthToCheck

int depthToCheck

Class com.vaadin.ui.Tree.TargetItemAllowsChildren extends TargetDetailIs implements Serializable

Class com.vaadin.ui.Tree.TreeDropCriterion extends ServerSideCriterion implements Serializable

Serialized Fields

tree

Tree tree

allowedItemIds

Set<E> allowedItemIds

Class com.vaadin.ui.Tree.TreeTargetDetails extends AbstractSelect.AbstractSelectTargetDetails implements Serializable

Class com.vaadin.ui.TwinColSelect extends AbstractSelect implements Serializable

Serialized Fields

columns

int columns

rows

int rows

Class com.vaadin.ui.Upload extends AbstractComponent implements Serializable

Serialized Fields

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

progressListener

Upload.ProgressListener progressListener
ProgressListener to which information about progress is sent during upload


progressListeners

LinkedHashSet<E> progressListeners

interrupted

boolean interrupted

notStarted

boolean notStarted

nextid

int nextid

Class com.vaadin.ui.Upload.FailedEvent extends Upload.FinishedEvent implements Serializable

Serialized Fields

reason

Exception reason

Class com.vaadin.ui.Upload.FinishedEvent extends Component.Event implements Serializable

Serialized Fields

length

long length
Length of the received file.


type

String type
MIME type of the received file.


filename

String filename
Received file name.

Class com.vaadin.ui.Upload.NoInputStreamEvent extends Upload.FailedEvent implements Serializable

Class com.vaadin.ui.Upload.NoOutputStreamEvent extends Upload.FailedEvent implements Serializable

Class com.vaadin.ui.Upload.StartedEvent extends Component.Event implements Serializable

Serialized Fields

filename

String filename

type

String type

Class com.vaadin.ui.Upload.SucceededEvent extends Upload.FinishedEvent implements Serializable

Class com.vaadin.ui.Upload.UploadException extends Exception implements Serializable

Class com.vaadin.ui.UriFragmentUtility extends AbstractComponent implements Serializable

Serialized Fields

fragment

String fragment

Class com.vaadin.ui.UriFragmentUtility.FragmentChangedEvent extends Component.Event implements Serializable

Class com.vaadin.ui.VerticalLayout extends AbstractOrderedLayout implements Serializable

Class com.vaadin.ui.Window extends Panel implements Serializable

Serialized Fields

terminal

Terminal terminal
The terminal this window is attached to.


application

Application application
The application this window is attached to.


uriHandlerList

LinkedList<E> uriHandlerList
List of URI handlers for this window.


parameterHandlerList

LinkedList<E> parameterHandlerList
List of parameter handlers for this window.


subwindows

LinkedHashSet<E> subwindows
Set of subwindows


theme

String theme
Explicitly specified theme of this window. If null, application theme is used.


openList

LinkedList<E> openList
Resources to be opened automatically on next repaint.


name

String name
The name of the window.


border

int border
Window border mode.


positionY

int positionY
Distance of Window top border in pixels from top border of the containing (main window) or -1 if unspecified.


positionX

int positionX
Distance of Window left border in pixels from left border of the containing (main window) or -1 if unspecified .


notifications

LinkedList<E> notifications

modal

boolean modal

resizable

boolean resizable

draggable

boolean draggable

centerRequested

boolean centerRequested

pendingFocus

Component.Focusable pendingFocus

jsExecQueue

ArrayList<E> jsExecQueue

scrollIntoView

Component scrollIntoView

closeShortcut

Window.CloseShortcut closeShortcut

Class com.vaadin.ui.Window.CloseEvent extends Component.Event implements Serializable

Class com.vaadin.ui.Window.CloseShortcut extends ShortcutListener implements Serializable

Serialized Fields

window

Window window

Class com.vaadin.ui.Window.Notification extends Object implements Serializable

Serialized Fields

caption

String caption

description

String description

icon

Resource icon

position

int position

delayMsec

int delayMsec

styleName

String styleName

Class com.vaadin.ui.Window.ResizeEvent extends Component.Event implements Serializable



Copyright © 2000-2010 IT Mill Ltd. All Rights Reserved.