aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2008-09-26 12:55:43 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2008-09-26 12:55:43 +0000
commite945f4b6554aa1aa353252109a3b843c89ad64ab (patch)
tree591fe57099e760fdaad98bbe60c6a5199cefbb6a /src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java
parentac564d08c08bf7b1399e9a38dc1679211cb8fb2c (diff)
downloadvaadin-framework-e945f4b6554aa1aa353252109a3b843c89ad64ab.tar.gz
vaadin-framework-e945f4b6554aa1aa353252109a3b843c89ad64ab.zip
Fixed #2090 and added test : width/height can be float
svn changeset:5527/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java')
-rw-r--r--src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java b/src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java
index 1aecfc6d45..6121b3f98b 100644
--- a/src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java
+++ b/src/com/itmill/toolkit/tests/featurebrowser/FeatureBrowser.java
@@ -280,7 +280,7 @@ public class FeatureBrowser extends CustomComponent implements
}
- public int getHeight() {
+ public float getHeight() {
// TODO Auto-generated method stub
return 0;
}
@@ -290,7 +290,7 @@ public class FeatureBrowser extends CustomComponent implements
return 0;
}
- public int getWidth() {
+ public float getWidth() {
// TODO Auto-generated method stub
return 0;
}
@@ -300,7 +300,7 @@ public class FeatureBrowser extends CustomComponent implements
return 0;
}
- public void setHeight(int height) {
+ public void setHeight(float height) {
// TODO Auto-generated method stub
}
@@ -320,7 +320,7 @@ public class FeatureBrowser extends CustomComponent implements
}
- public void setWidth(int width) {
+ public void setWidth(float width) {
// TODO Auto-generated method stub
}