We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.terminal.
Class Paintable.RepaintRequestEvent
java.lang.Object
java.util.EventObject
com.vaadin.terminal.Paintable.RepaintRequestEvent
All Implemented Interfaces:
Enclosing interface:
- extends EventObject
public static class Paintable.RepaintRequestEvent
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:
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)
- Parameters:
source
- the paintable needing repaint.
Constructs a new event.
Method Detail |
---|
getPaintable
public Paintable getPaintable()
- Returns:
- Paintable for which the
paint
method will return dissimilar UIDL from the previous call of the method.
Gets the paintable needing repainting.