aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2009-04-12 00:07:09 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2009-04-12 00:07:09 +0000
commit204a857eb54f1840f27969faa9855c38390d2751 (patch)
tree5beda66dabd194abe84219349472ba05be73b667 /src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java
parent8c21a6f36ea05bfa48b34d6162bc5a2fe3fa488b (diff)
downloadvaadin-framework-204a857eb54f1840f27969faa9855c38390d2751.tar.gz
vaadin-framework-204a857eb54f1840f27969faa9855c38390d2751.zip
Implementation serialization support for Toolkit. Fixes #695
svn changeset:7387/svn branch:6.0
Diffstat (limited to 'src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java')
-rw-r--r--src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java b/src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java
index 6cddcd29dc..b43770d45f 100644
--- a/src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java
+++ b/src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java
@@ -23,6 +23,7 @@ import com.itmill.toolkit.ui.VerticalLayout;
*/
public class ClientCachingExample extends CustomComponent {
+ private static final long serialVersionUID = -1033520074262036031L;
private static final String msg = "This example is a (simple) demonstration of client-side caching."
+ " The content in one tab is intentionally made very slow to"
+ " 'produce' server-side. When you changes to this tab for the"
@@ -52,6 +53,8 @@ public class ClientCachingExample extends CustomComponent {
layout = new VerticalLayout();
layout.setMargin(true);
l = new Label("Slow label - until cached client side.") {
+ private static final long serialVersionUID = -2741194381200799815L;
+
@Override
public void paintContent(PaintTarget target) throws PaintException {
try {