Java com.vaadin.server PaintTarget fields, constructors, methods, implement or subclass

Example usage for Java com.vaadin.server PaintTarget fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.vaadin.server PaintTarget.

The text is from its open source code.

Implementation

com.vaadin.server.PaintTarget has the following implementations.
Click this link to see all its implementation.

Method

voidaddAttribute(String name, boolean value)
Adds a boolean attribute to component.
voidaddAttribute(String name, int value)
Adds a integer attribute to component.
voidaddAttribute(String name, Resource value)
Adds a resource attribute to component.
voidaddAttribute(String name, long value)
Adds a long attribute to component.
voidaddAttribute(String name, float value)
Adds a float attribute to component.
voidaddAttribute(String name, double value)
Adds a double attribute to component.
voidaddAttribute(String name, String value)
Adds a string attribute to component.
voidaddAttribute(String name, Map value)
Adds a Map attribute to the component.
voidaddAttribute(String name, Component value)
Adds a Component type attribute.
voidaddAttribute(String string, Object[] keys)
voidaddText(String text)
Adds text node.
voidaddVariable(VariableOwner owner, String name, StreamVariable value)
Adds details about StreamVariable to the UIDL stream.
voidaddVariable(VariableOwner owner, String name, String value)
Adds a string type variable.
voidaddVariable(VariableOwner owner, String name, int value)
Adds an int type variable.
voidaddVariable(VariableOwner owner, String name, long value)
Adds a long type variable.
voidaddVariable(VariableOwner owner, String name, float value)
Adds a float type variable.
voidaddVariable(VariableOwner owner, String name, double value)
Adds a double type variable.
voidaddVariable(VariableOwner owner, String name, boolean value)
Adds a boolean type variable.
voidaddVariable(VariableOwner owner, String name, String[] value)
Adds a string array type variable.
voidaddVariable(VariableOwner owner, String name, Component value)
Adds a Component type variable.
voidendTag(String tagName)
Prints element end tag.
booleanisFullRepaint()
voidstartTag(String tagName)
Prints element start tag.