diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-05 09:00:30 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-05 09:00:30 +0300 |
commit | 025d8eae13bc3473b676ff1a534b28b5e812017d (patch) | |
tree | ddab820ea43cbef3fc0c25439a726fe8be5a9897 /uitest/src/com/vaadin/tests/tickets/Ticket2208.java | |
parent | e75e0db87de2b6011fce4406b9924b991f88ce67 (diff) | |
parent | c14171d1344f1360ae4a95cd9494ab2829d439d4 (diff) | |
download | vaadin-framework-025d8eae13bc3473b676ff1a534b28b5e812017d.tar.gz vaadin-framework-025d8eae13bc3473b676ff1a534b28b5e812017d.zip |
Merge branch 'master' into layoutgraph
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2208.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2208.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2208.java b/uitest/src/com/vaadin/tests/tickets/Ticket2208.java index f622f093ee..98cd6724d4 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket2208.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2208.java @@ -4,10 +4,10 @@ import com.vaadin.Application; import com.vaadin.data.Item; import com.vaadin.ui.Component; import com.vaadin.ui.Label; -import com.vaadin.ui.UI.LegacyWindow; import com.vaadin.ui.Table; import com.vaadin.ui.Table.CellStyleGenerator; import com.vaadin.ui.Table.ColumnGenerator; +import com.vaadin.ui.UI.LegacyWindow; public class Ticket2208 extends Application.LegacyApplication { @@ -40,7 +40,8 @@ public class Ticket2208 extends Application.LegacyApplication { t.setCellStyleGenerator(new CellStyleGenerator() { @Override - public String getStyle(Object itemId, Object propertyId) { + public String getStyle(Table source, Object itemId, + Object propertyId) { if ("col 1 (red)".equals(propertyId)) { return "red"; } |