com.vaadin.terminal.
Interface PaintTarget
All Superinterfaces:
All Known Implementing Classes:
- extends Serializable
public interface PaintTarget
This interface defines the methods for painting XML to the UIDL stream.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
Method Summary | |
---|---|
void |
addAttribute(String name,
boolean value)
Adds a boolean attribute to component. |
void |
addAttribute(String name,
double value)
Adds a double attribute to component. |
void |
addAttribute(String name,
float value)
Adds a float attribute to component. |
void |
addAttribute(String name,
int value)
Adds a integer attribute to component. |
void |
addAttribute(String name,
long value)
Adds a long attribute to component. |
void |
addAttribute(String name,
Map<?,?> value)
TODO |
void |
addAttribute(String string,
Object[] keys)
|
void |
addAttribute(String name,
Paintable value)
Adds a Paintable type attribute. |
void |
addAttribute(String name,
Resource value)
Adds a resource attribute to component. |
void |
addAttribute(String name,
String value)
Adds a string attribute to component. |
void |
addCharacterData(String text)
Adds CDATA node to target UIDL-tree. |
void |
addSection(String sectionTagName,
String sectionData)
Prints single XMLsection. |
void |
addText(String text)
Adds text node. |
void |
addUIDL(String uidl)
Adds UIDL directly. |
void |
addUploadStreamVariable(VariableOwner owner,
String name)
Adds a upload stream type variable. |
void |
addVariable(VariableOwner owner,
String name,
boolean value)
Adds a boolean type variable. |
void |
addVariable(VariableOwner owner,
String name,
double value)
Adds a double type variable. |
void |
addVariable(VariableOwner owner,
String name,
float value)
Adds a float type variable. |
void |
addVariable(VariableOwner owner,
String name,
int value)
Adds a int type variable. |
void |
addVariable(VariableOwner owner,
String name,
long value)
Adds a long type variable. |
void |
addVariable(VariableOwner owner,
String name,
Paintable value)
Adds a Paintable type variable. |
void |
addVariable(VariableOwner owner,
String name,
StreamVariable value)
Adds details about StreamVariable to the UIDL stream. |
void |
addVariable(VariableOwner owner,
String name,
String value)
Adds a string type variable. |
void |
addVariable(VariableOwner owner,
String name,
String[] value)
Adds a string array type variable. |
void |
addXMLSection(String sectionTagName,
String sectionData,
String namespace)
Prints single XML section. |
void |
endTag(String tagName)
Prints element end tag. |
String |
getTag(Paintable paintable)
|
boolean |
isFullRepaint()
|
void |
paintReference(Paintable paintable,
String referenceName)
Deprecated. use addAttribute(String, Paintable) or
addVariable(VariableOwner, String, Paintable)
instead |
boolean |
startTag(Paintable paintable,
String tag)
Prints element start tag of a paintable section. |
void |
startTag(String tagName)
Prints element start tag. |
Method Detail |
---|
addSection
void addSection(String sectionTagName,
String sectionData)
throws PaintException
- Parameters:
sectionTagName
- the name of the tag.sectionData
- the scetion data.- Throws:
PaintException
- if the paint operation failed.
Prints single XMLsection. Prints full XML section. The section data is escaped from XML tags and surrounded by XML start and end-tags.
startTag
boolean startTag(Paintable paintable,
String tag)
throws PaintException
- Parameters:
paintable
- the paintable to start.tag
- the name of the start tag.- Returns:
true
if paintable found in cache,false
otherwise.- Throws:
PaintException
- if the paint operation failed.- Since:
- 3.1
- See Also:
startTag(String)
Prints element start tag of a paintable section. Starts a paintable section using the given tag. The PaintTarget may implement a caching scheme, that checks the paintable has actually changed or can a cached version be used instead. This method should call the startTag method.
If the Paintable is found in cache and this function returns true it may omit the content and close the tag, in which case cached content should be used.
paintReference
@Deprecated
void paintReference(Paintable paintable,
String referenceName)
throws PaintException
- Parameters:
paintable
- the Paintable to referencereferenceName
-- Throws:
PaintException
- Since:
- 5.2
Deprecated. use addAttribute(String, Paintable)
or
addVariable(VariableOwner, String, Paintable)
instead
Paints a component reference as an attribute to current tag. This method
is meant to enable component interactions on client side. With reference
the client side component can communicate directly to other component.
Note! This was experimental api and got replaced by
addAttribute(String, Paintable)
and
addVariable(VariableOwner, String, Paintable)
.
startTag
void startTag(String tagName)
throws PaintException
- Parameters:
tagName
- the name of the start tag.- Throws:
PaintException
- if the paint operation failed.
Prints element start tag.
Todo:
Checking of input values
endTag
void endTag(String tagName)
throws PaintException
- Parameters:
tagName
- the name of the end tag.- Throws:
PaintException
- if the paint operation failed.
Prints element end tag. If the parent tag is closed before every child tag is closed an PaintException is raised.
addAttribute
void addAttribute(String name,
boolean value)
throws PaintException
- Parameters:
name
- the Attribute name.value
- the Attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a boolean attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
int value)
throws PaintException
- Parameters:
name
- the Attribute name.value
- the Attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a integer attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
Resource value)
throws PaintException
- Parameters:
name
- the Attribute namevalue
- the Attribute value- Throws:
PaintException
- if the paint operation failed.
Adds a resource attribute to component. Atributes must be added before any content is written.
addVariable
void addVariable(VariableOwner owner,
String name,
StreamVariable value)
throws PaintException
- a StreamVariable with same name replaces an old one
- the variable owner is no more attached
- the developer signals this by calling
StreamVariable.StreamingStartEvent.disposeStreamVariable()
- Parameters:
owner
- the ReceiverOwner that can track the progress of streaming to the given StreamVariablename
- an identifying name for the StreamVariablevalue
- the StreamVariable to paint- Throws:
PaintException
- if the paint operation failed.
Adds details about StreamVariable
to the UIDL stream. Eg. in web
terminals Receivers are typically rendered for the client side as URLs,
where the client side implementation can do an http post request.
The urls in UIDL message may use Vaadin specific protocol. Before
actually using the urls on the client side, they should be passed via
ApplicationConnection.translateVaadinUri(String)
.
Note that in current terminal implementation StreamVariables are cleaned from the terminal only when:
addAttribute
void addAttribute(String name,
long value)
throws PaintException
- Parameters:
name
- the Attribute name.value
- the Attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a long attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
float value)
throws PaintException
- Parameters:
name
- the Attribute name.value
- the Attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a float attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
double value)
throws PaintException
- Parameters:
name
- the Attribute name.value
- the Attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a double attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
String value)
throws PaintException
- Parameters:
name
- the Boolean attribute name.value
- the Boolean attribute value.- Throws:
PaintException
- if the paint operation failed.
Adds a string attribute to component. Atributes must be added before any content is written.
addAttribute
void addAttribute(String name,
Map<?,?> value)
throws PaintException
- Parameters:
name
-value
-- Throws:
PaintException
TODO
addAttribute
void addAttribute(String name,
Paintable value)
throws PaintException
- Parameters:
name
- the name of the attributevalue
- the Paintable to be referenced on client side- Throws:
PaintException
Adds a Paintable type attribute. On client side the value will be a terminal specific reference to corresponding component on client side implementation.
addVariable
void addVariable(VariableOwner owner,
String name,
String value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a string type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
int value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a int type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
long value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a long type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
float value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a float type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
double value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a double type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
boolean value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a boolean type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
String[] value)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.value
- the Variable initial value.- Throws:
PaintException
- if the paint operation failed.
Adds a string array type variable.
addVariable
void addVariable(VariableOwner owner,
String name,
Paintable value)
throws PaintException
- Parameters:
owner
- the Listener for variable changesname
- the name of the variablevalue
- the initial value of the variable- Throws:
PaintException
- if the paint oparation fails
Adds a Paintable type variable. On client side the variable value will be a terminal specific reference to corresponding component on client side implementation. When updated from client side, terminal will map the client side component reference back to a corresponding server side reference.
addUploadStreamVariable
void addUploadStreamVariable(VariableOwner owner,
String name)
throws PaintException
- Parameters:
owner
- the Listener for variable changes.name
- the Variable name.- Throws:
PaintException
- if the paint operation failed.
Adds a upload stream type variable.
addXMLSection
void addXMLSection(String sectionTagName,
String sectionData,
String namespace)
throws PaintException
- Parameters:
sectionTagName
- the tag name.sectionData
- the section data to be printed.namespace
- the namespace.- Throws:
PaintException
- if the paint operation failed.
Prints single XML section.
Prints full XML section. The section data must be XML and it is surrounded by XML start and end-tags.
addUIDL
void addUIDL(String uidl)
throws PaintException
- Parameters:
uidl
- the UIDL to be added.- Throws:
PaintException
- if the paint operation failed.
Adds UIDL directly. The UIDL must be valid in accordance with the UIDL.dtd
addText
void addText(String text)
throws PaintException
- Parameters:
text
- the Text to add- Throws:
PaintException
- if the paint operation failed.
Adds text node. All the contents of the text are XML-escaped.
addCharacterData
void addCharacterData(String text)
throws PaintException
- Parameters:
text
- the Character data to add- Throws:
PaintException
- if the paint operation failed.- Since:
- 3.1
Adds CDATA node to target UIDL-tree.
addAttribute
void addAttribute(String string,
Object[] keys)
getTag
String getTag(Paintable paintable)
- Returns:
- the "tag" string used in communication to present given
Paintable
type. Terminal may define how to present paintable.
isFullRepaint
boolean isFullRepaint()
- Returns:
- true if a full repaint has been requested. E.g. refresh in a browser window or such.