Uses of Interface
com.vaadin.server.VariableOwner
-
Packages that use VariableOwner Package Description com.vaadin.event com.vaadin.server com.vaadin.server.communication com.vaadin.ui com.vaadin.ui.components.colorpicker -
-
Uses of VariableOwner in com.vaadin.event
Methods in com.vaadin.event with type parameters of type VariableOwner Modifier and Type Method Description <T extends Component & Action.Container & VariableOwner>
voidActionManager. setViewer(T viewer)
-
Uses of VariableOwner in com.vaadin.server
Classes in com.vaadin.server that implement VariableOwner Modifier and Type Class Description class
DragAndDropService
Deprecated.Since 8.1, no direct replacement, seeDragSourceExtension
andDropTargetExtension
.Methods in com.vaadin.server with parameters of type VariableOwner Modifier and Type Method Description void
JsonPaintTarget. addUploadStreamVariable(VariableOwner owner, String name)
Adds a upload stream type variable.void
PaintTarget. addUploadStreamVariable(VariableOwner owner, String name)
Adds an upload stream type variable.void
JsonPaintTarget. addVariable(VariableOwner owner, String name, boolean value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, double value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, float value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, int value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, long value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, StreamVariable value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, Component value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, String value)
void
JsonPaintTarget. addVariable(VariableOwner owner, String name, String[] value)
void
PaintTarget. addVariable(VariableOwner owner, String name, boolean value)
Adds a boolean type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, double value)
Adds a double type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, float value)
Adds a float type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, int value)
Adds an int type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, long value)
Adds a long type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, StreamVariable value)
Adds details aboutStreamVariable
to the UIDL stream.void
PaintTarget. addVariable(VariableOwner owner, String name, Component value)
Adds a Component type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, String value)
Adds a string type variable.void
PaintTarget. addVariable(VariableOwner owner, String name, String[] value)
Adds a string array type variable. -
Uses of VariableOwner in com.vaadin.server.communication
Methods in com.vaadin.server.communication with parameters of type VariableOwner Modifier and Type Method Description protected void
ServerRpcHandler. changeVariables(Object source, VariableOwner owner, Map<String,Object> m)
-
Uses of VariableOwner in com.vaadin.ui
Subinterfaces of VariableOwner in com.vaadin.ui Modifier and Type Interface Description interface
LegacyComponent
Deprecated.As of 7.0.Classes in com.vaadin.ui that implement VariableOwner Modifier and Type Class Description class
CustomLayout
A container component with freely designed layout and style.class
DragAndDropWrapper
Deprecated.Replaced in 8.1 withDragSourceExtension
andDropTargetExtension
.class
LegacyWindow
Deprecated.class
MenuBar
A class representing a horizontal menu bar.class
Panel
Panel - a simple single component container.class
UI
The topmost component in any component hierarchy.class
Upload
Component for uploading files from client to server.class
Window
A component that represents a floating popup window that can be added to aUI
. -
Uses of VariableOwner in com.vaadin.ui.components.colorpicker
Classes in com.vaadin.ui.components.colorpicker that implement VariableOwner Modifier and Type Class Description class
ColorPickerPopup
A component that represents color selection popup within a color picker.
-