]> source.dussan.org Git - vaadin-framework.git/commitdiff
minor changes to open client side for extension
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 16 Apr 2009 08:08:37 +0000 (08:08 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 16 Apr 2009 08:08:37 +0000 (08:08 +0000)
svn changeset:7435/svn branch:6.0

src/com/itmill/toolkit/terminal/gwt/client/ui/IAbsoluteLayout.java

index fc1f14cb83ef7c999645db67598f672db1466539..2b2def0e7fff31f565196efd6c6785ec722af660 100644 (file)
@@ -32,7 +32,7 @@ public class IAbsoluteLayout extends ComplexPanel implements Container {
 
     private DivElement marginElement;
 
-    private Element canvas;
+    protected final Element canvas = DOM.createDiv();
 
     private int excessPixelsHorizontal;
 
@@ -42,7 +42,7 @@ public class IAbsoluteLayout extends ComplexPanel implements Container {
 
     private Map<String, AbsoluteWrapper> pidToComponentWrappper = new HashMap<String, AbsoluteWrapper>();
 
-    private ApplicationConnection client;
+    protected ApplicationConnection client;
 
     private boolean rendering;
 
@@ -50,7 +50,6 @@ public class IAbsoluteLayout extends ComplexPanel implements Container {
         setElement(Document.get().createDivElement());
         setStyleName(CLASSNAME);
         marginElement = Document.get().createDivElement();
-        canvas = DOM.createDiv();
         canvas.getStyle().setProperty("position", "relative");
         marginElement.appendChild(canvas);
         getElement().appendChild(marginElement);