]> source.dussan.org Git - vaadin-framework.git/commitdiff
#8019 Implemented Serializable in Size so you can serialize when you size.
authorJens Jansson <peppe@vaadin.com>
Thu, 22 Dec 2011 11:15:01 +0000 (13:15 +0200)
committerJens Jansson <peppe@vaadin.com>
Thu, 22 Dec 2011 11:15:01 +0000 (13:15 +0200)
src/com/vaadin/ui/AbstractComponent.java

index 4d81014e7fe8f954bfe13010397e49bb26086281..4b9449c598bf7c72baa9b0b0eda7bbe6801767fc 100644 (file)
@@ -1423,7 +1423,7 @@ public abstract class AbstractComponent implements Component, MethodEventSource
         return new Size(size, unit);
     }
 
-    private static class Size {
+    private static class Size implements Serializable {
         float size;
         Unit unit;