com.vaadin.terminal.


Class Paintable.RepaintRequestEvent

java.lang.Object
  java.util.EventObject
      com.vaadin.terminal.Paintable.RepaintRequestEvent

All Implemented Interfaces:

Serializable

Enclosing interface:

Paintable

public static class Paintable.RepaintRequestEvent
extends EventObject

Repaint request event is thrown when the paintable needs to be repainted. This is typically done when the paint method would return dissimilar UIDL from the previous call of the method.

See Also:

Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
Paintable.RepaintRequestEvent(Paintable source)
          Constructs a new event.
 
Method Summary
 Paintable getPaintable()
          Gets the paintable needing repainting.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Paintable.RepaintRequestEvent

public Paintable.RepaintRequestEvent(Paintable source)

Constructs a new event.

Parameters:
source - the paintable needing repaint.

Method Detail

getPaintable

public Paintable getPaintable()

Gets the paintable needing repainting.

Returns:
Paintable for which the paint method will return dissimilar UIDL from the previous call of the method.