diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-11-21 13:45:18 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-11-21 13:45:18 +0200 |
commit | 3fc9f19534b7d1ab06fc73b146b9d31868c205c1 (patch) | |
tree | 1bffb8b9105fe8c150276c646f0ff119f9d6a565 /uitest/src/com/vaadin/tests/components/tree | |
parent | 375024684a58c27657abb79ff63f92ce247437b5 (diff) | |
download | vaadin-framework-3fc9f19534b7d1ab06fc73b146b9d31868c205c1.tar.gz vaadin-framework-3fc9f19534b7d1ab06fc73b146b9d31868c205c1.zip |
Global code cleanup
Change-Id: I14f46e6aa4f9cbdd9037f1c4ad1ac38fe7cbda86
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/tree')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/tree/TreeIconUpdate.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/tree/TreeIconUpdate.java b/uitest/src/com/vaadin/tests/components/tree/TreeIconUpdate.java index 8e0eac801d..6580133645 100644 --- a/uitest/src/com/vaadin/tests/components/tree/TreeIconUpdate.java +++ b/uitest/src/com/vaadin/tests/components/tree/TreeIconUpdate.java @@ -41,6 +41,7 @@ public class TreeIconUpdate extends TestBase { Button button = new Button("Change icon", new ClickListener() { + @Override public void buttonClick(ClickEvent event) { tree.getItem("bar0").getItemProperty("icon").setValue(ICON2); } @@ -49,6 +50,7 @@ public class TreeIconUpdate extends TestBase { addComponent(button); button = new Button("Change caption", new ClickListener() { + @Override public void buttonClick(ClickEvent event) { tree.getItem("bar0").getItemProperty("name").setValue("foo"); } |