Uses of Class
com.vaadin.terminal.PaintException

Packages that use PaintException
com.vaadin.event   
com.vaadin.event.dd.acceptcriteria   
com.vaadin.terminal   
com.vaadin.terminal.gwt.server   
com.vaadin.ui   
 

Uses of PaintException in com.vaadin.event
 

Methods in com.vaadin.event that throw PaintException
 void ActionManager.paintActions(Object actionTarget, PaintTarget paintTarget)
           
 

Uses of PaintException in com.vaadin.event.dd.acceptcriteria
 

Methods in com.vaadin.event.dd.acceptcriteria that throw PaintException
 void ServerSideCriterion.paint(PaintTarget target)
           
 void AcceptCriterion.paint(PaintTarget target)
           
 void ClientSideCriterion.paint(PaintTarget target)
           
 void SourceIs.paintContent(PaintTarget target)
           
 void ContainsDataFlavor.paintContent(PaintTarget target)
           
 void Or.paintContent(PaintTarget target)
           
 void Not.paintContent(PaintTarget target)
           
 void And.paintContent(PaintTarget target)
           
protected  void ClientSideCriterion.paintContent(PaintTarget target)
           
 void TargetDetailIs.paintContent(PaintTarget target)
           
 void ServerSideCriterion.paintResponse(PaintTarget target)
           
 void AcceptCriterion.paintResponse(PaintTarget target)
          This needs to be implemented iff criterion does some lazy server side initialization.
 void ClientSideCriterion.paintResponse(PaintTarget target)
           
 

Uses of PaintException in com.vaadin.terminal
 

Methods in com.vaadin.terminal that throw PaintException
 void PaintTarget.addAttribute(String name, boolean value)
          Adds a boolean attribute to component.
 void PaintTarget.addAttribute(String name, Component value)
          Adds a Paintable type attribute.
 void PaintTarget.addAttribute(String name, double value)
          Adds a double attribute to component.
 void PaintTarget.addAttribute(String name, float value)
          Adds a float attribute to component.
 void PaintTarget.addAttribute(String name, int value)
          Adds a integer attribute to component.
 void PaintTarget.addAttribute(String name, long value)
          Adds a long attribute to component.
 void PaintTarget.addAttribute(String name, Map<?,?> value)
          TODO
 void PaintTarget.addAttribute(String name, Resource value)
          Adds a resource attribute to component.
 void PaintTarget.addAttribute(String name, String value)
          Adds a string attribute to component.
 void PaintTarget.addCharacterData(String text)
          Adds CDATA node to target UIDL-tree.
 void PaintTarget.addSection(String sectionTagName, String sectionData)
          Prints single XMLsection.
 void PaintTarget.addText(String text)
          Adds text node.
 void PaintTarget.addUIDL(String uidl)
          Adds UIDL directly.
 void PaintTarget.addUploadStreamVariable(VariableOwner owner, String name)
          Adds a upload stream type variable.
 void PaintTarget.addVariable(VariableOwner owner, String name, boolean value)
          Adds a boolean type variable.
 void PaintTarget.addVariable(VariableOwner owner, String name, Component value)
          Adds a Paintable 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 a 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 about StreamVariable to the UIDL stream.
 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.
 void PaintTarget.addXMLSection(String sectionTagName, String sectionData, String namespace)
          Prints single XML section.
 void PaintTarget.endPaintable(Component paintable)
          Prints paintable element end tag.
 void PaintTarget.endTag(String tagName)
          Prints element end tag.
static void LegacyPaint.paint(Component component, PaintTarget target)
           Paints the Paintable into a UIDL stream.
 void Vaadin6Component.paintContent(PaintTarget target)
           Paints the Paintable into a UIDL stream.
 void Page.paintContent(PaintTarget target)
           
 PaintTarget.PaintStatus PaintTarget.startPaintable(Component paintable, String tag)
          Prints element start tag of a paintable section.
 void PaintTarget.startTag(String tagName)
          Prints element start tag.
 

Uses of PaintException in com.vaadin.terminal.gwt.server
 

Methods in com.vaadin.terminal.gwt.server that throw PaintException
 void JsonPaintTarget.addAttribute(String name, boolean value)
           
 void JsonPaintTarget.addAttribute(String name, Component value)
           
 void JsonPaintTarget.addAttribute(String name, double value)
           
 void JsonPaintTarget.addAttribute(String name, float value)
           
 void JsonPaintTarget.addAttribute(String name, int value)
           
 void JsonPaintTarget.addAttribute(String name, long value)
           
 void JsonPaintTarget.addAttribute(String name, Map<?,?> value)
           
 void JsonPaintTarget.addAttribute(String name, Resource value)
           
 void JsonPaintTarget.addAttribute(String name, String value)
           
 void JsonPaintTarget.addCharacterData(String text)
           
 void JsonPaintTarget.addSection(String sectionTagName, String sectionData)
          Prints the single text section.
 void JsonPaintTarget.addText(String str)
          Prints XML-escaped text.
 void JsonPaintTarget.addUIDL(String xml)
          Adds XML directly to UIDL.
 void JsonPaintTarget.addUploadStreamVariable(VariableOwner owner, String name)
          Adds a upload stream type variable.
 void JsonPaintTarget.addVariable(VariableOwner owner, String name, boolean value)
           
 void JsonPaintTarget.addVariable(VariableOwner owner, String name, Component 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, String value)
           
 void JsonPaintTarget.addVariable(VariableOwner owner, String name, String[] value)
           
 void JsonPaintTarget.addXMLSection(String sectionTagName, String sectionData, String namespace)
          Adds XML section with namespace.
 void JsonPaintTarget.close()
          Closes the paint target.
 void JsonPaintTarget.endPaintable(Component paintable)
           
 void JsonPaintTarget.endTag(String tagName)
          Prints the element end tag.
protected  JSONObject BootstrapHandler.getApplicationParameters(BootstrapHandler.BootstrapContext context)
           
protected  String AbstractCommunicationManager.getInitialUIDL(WrappedRequest request, Root root)
          Generates the initial UIDL message that can e.g.
protected abstract  String BootstrapHandler.getInitialUIDL(WrappedRequest request, Root root)
          Gets the initial UIDL message to send to the client.
 PaintTarget.PaintStatus JsonPaintTarget.startPaintable(Component connector, String tagName)
           
 void JsonPaintTarget.startTag(String tagName)
           
 void JsonPaintTarget.startTag(String tagName, boolean isChildNode)
          Prints the element start tag.
 void AbstractCommunicationManager.writeUidlResponse(WrappedRequest request, boolean repaintAll, PrintWriter outWriter, Root root, boolean analyzeLayouts)
           
 

Constructors in com.vaadin.terminal.gwt.server that throw PaintException
JsonPaintTarget(AbstractCommunicationManager manager, PrintWriter outWriter, boolean cachingRequired)
          Creates a new JsonPaintTarget.
 

Uses of PaintException in com.vaadin.ui
 

Methods in com.vaadin.ui that throw PaintException
 void DateField.paintContent(PaintTarget target)
           
 void Tree.paintContent(PaintTarget target)
          Paints any needed component-specific things to the given UIDL stream.
 void Tree.TargetInSubtree.paintContent(PaintTarget target)
           
 void ListSelect.paintContent(PaintTarget target)
           
 void PopupView.paintContent(PaintTarget target)
          Paint (serialize) the component for the client.
 void TwinColSelect.paintContent(PaintTarget target)
           
 void Window.paintContent(PaintTarget target)
           
 void OptionGroup.paintContent(PaintTarget target)
           
 void ComboBox.paintContent(PaintTarget target)
           
 void RichTextArea.paintContent(PaintTarget target)
           
 void MenuBar.paintContent(PaintTarget target)
          Paint (serialise) the component for the client.
 void GridLayout.paintContent(PaintTarget target)
          Paints the contents of this component.
 void Form.paintContent(PaintTarget target)
          Deprecated.  
 void TreeTable.paintContent(PaintTarget target)
           
 void Panel.paintContent(PaintTarget target)
           
 void AbstractTextField.paintContent(PaintTarget target)
           
 void NativeSelect.paintContent(PaintTarget target)
           
 void Root.paintContent(PaintTarget target)
           
 void Table.paintContent(PaintTarget target)
           
 void Link.paintContent(PaintTarget target)
          Paints the content of this component.
 void Embedded.paintContent(PaintTarget target)
          Invoked when the component state should be painted.
 void CustomLayout.paintContent(PaintTarget target)
           
 void Select.paintContent(PaintTarget target)
          Paints the content of this component.
 void Upload.paintContent(PaintTarget target)
          Paints the content of this component.
 void PopupDateField.paintContent(PaintTarget target)
           
 void ProgressIndicator.paintContent(PaintTarget target)
          Paints the content of this component.
 void AbstractSelect.paintContent(PaintTarget target)
          Paints the content of this component.
 void TabSheet.paintContent(PaintTarget target)
          Paints the content of this component.
 void DragAndDropWrapper.paintContent(PaintTarget target)
           
 void Slider.paintContent(PaintTarget target)
           
protected  void OptionGroup.paintItem(PaintTarget target, Object itemId)
           
protected  void AbstractSelect.paintItem(PaintTarget target, Object itemId)
           
 void Tree.TreeDropCriterion.paintResponse(PaintTarget target)
           
 void Table.TableDropCriterion.paintResponse(PaintTarget target)
           
protected  void TreeTable.paintRowAttributes(PaintTarget target, Object itemId)
           
protected  void Table.paintRowAttributes(PaintTarget target, Object itemId)
          A method where extended Table implementations may add their custom attributes for rows.
protected  void Table.paintRowHeader(PaintTarget target, Object[][] cells, int indexInRowbuffer)
           
protected  void TreeTable.paintRowIcon(PaintTarget target, Object[][] cells, int indexInRowbuffer)
           
protected  void Table.paintRowIcon(PaintTarget target, Object[][] cells, int indexInRowbuffer)
           
 



Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.