diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-02-07 14:52:46 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-02-07 14:52:46 +0200 |
commit | e4e09111bec99162570f90b9e6c6b040f9001ce1 (patch) | |
tree | 3e864effe0b1a8a32c8dba499faa980e0fa55af0 /src/com/vaadin/terminal/gwt/client/ComponentDetail.java | |
parent | 87c3bf1e50ad6949e1fedff2429d41e79abfc971 (diff) | |
download | vaadin-framework-e4e09111bec99162570f90b9e6c6b040f9001ce1.tar.gz vaadin-framework-e4e09111bec99162570f90b9e6c6b040f9001ce1.zip |
Store MeasuredSize instance in VAbstractPaintableWidget (#8313)
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/ComponentDetail.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ComponentDetail.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ComponentDetail.java b/src/com/vaadin/terminal/gwt/client/ComponentDetail.java index e70a49fdad..eff5a76583 100644 --- a/src/com/vaadin/terminal/gwt/client/ComponentDetail.java +++ b/src/com/vaadin/terminal/gwt/client/ComponentDetail.java @@ -6,13 +6,11 @@ package com.vaadin.terminal.gwt.client; import java.util.HashMap; import com.google.gwt.core.client.JsArrayString; -import com.vaadin.terminal.gwt.client.MeasureManager.MeasuredSize; import com.vaadin.terminal.gwt.client.RenderInformation.Size; class ComponentDetail { private TooltipInfo tooltipInfo = new TooltipInfo(); - private MeasureManager.MeasuredSize measuredSize = new MeasureManager.MeasuredSize(); public ComponentDetail() { @@ -49,8 +47,7 @@ class ComponentDetail { private HashMap<Object, TooltipInfo> additionalTooltips; /** - - /** + * * @return the offsetSize */ Size getOffsetSize() { @@ -110,8 +107,4 @@ class ComponentDetail { } return false; } - - public MeasureManager.MeasuredSize getMeasuredSize() { - return measuredSize; - } } |