diff options
Diffstat (limited to 'src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java')
-rw-r--r-- | src/com/itmill/toolkit/automatedtests/featurebrowser/ClientCachingExample.java | 3 |
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 {
|