diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-01-28 10:22:16 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-01-28 10:22:16 +0000 |
commit | d48f8a80f403e0ebb21cf6fa7aafde091e43d35b (patch) | |
tree | 67646c1518ea2a92a3e5df50c4d9ba07e9c39d8c /src/com/itmill/toolkit/ui/CustomComponent.java | |
parent | afc95e6c9482fc0611449d3d0be7c33ac7daa82b (diff) | |
download | vaadin-framework-d48f8a80f403e0ebb21cf6fa7aafde091e43d35b.tar.gz vaadin-framework-d48f8a80f403e0ebb21cf6fa7aafde091e43d35b.zip |
component implements sizeable and simple general terminal implementation
svn changeset:3662/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/CustomComponent.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/CustomComponent.java | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomComponent.java b/src/com/itmill/toolkit/ui/CustomComponent.java index 2deec9aedd..27c99f2f5c 100644 --- a/src/com/itmill/toolkit/ui/CustomComponent.java +++ b/src/com/itmill/toolkit/ui/CustomComponent.java @@ -507,4 +507,56 @@ public class CustomComponent implements Component { return testingId; } + // TODO bridge sizeable methods to composition root and documentate + + public int getHeight() { + // TODO Auto-generated method stub + return 0; + } + + public int getHeightUnits() { + // TODO Auto-generated method stub + return 0; + } + + public int getWidth() { + // TODO Auto-generated method stub + return 0; + } + + public int getWidthUnits() { + // TODO Auto-generated method stub + return 0; + } + + public void setHeight(int height) { + // TODO Auto-generated method stub + + } + + public void setHeightUnits(int units) { + // TODO Auto-generated method stub + + } + + public void setSizeFull() { + // TODO Auto-generated method stub + + } + + public void setSizeUndefined() { + // TODO Auto-generated method stub + + } + + public void setWidth(int width) { + // TODO Auto-generated method stub + + } + + public void setWidthUnits(int units) { + // TODO Auto-generated method stub + + } + } |