]> source.dussan.org Git - vaadin-framework.git/commitdiff
small fix
authorMarc Englund <marc.englund@itmill.com>
Fri, 2 Nov 2007 14:54:16 +0000 (14:54 +0000)
committerMarc Englund <marc.englund@itmill.com>
Fri, 2 Nov 2007 14:54:16 +0000 (14:54 +0000)
svn changeset:2703/svn branch:trunk

src/com/itmill/toolkit/tests/TableSelectTest.java

index 6e70b3b41e3e9b4e5f33334ebe76194b66fe3af0..c00b2bdce87758d0201253b1a6a75fbcb05b97fc 100644 (file)
@@ -61,24 +61,26 @@ public class TableSelectTest extends CustomComponent implements
                t.setNullSelectionAllowed(false);\r
                t.addListener(this);\r
 \r
-               t = new Table("multi nullsel nullselid");\r
+               t = new Table("multi(fails) nullsel nullselid");\r
                main.addComponent(t);\r
                id = t(t);\r
                t.setNullSelectionItemId(id);\r
                try {\r
                        t.setMultiSelect(true);\r
+                       t.setCaption("multi(SHOLD FAIL BUT DID NOT) nullsel nullselid");\r
                } catch (Exception e) {\r
                        System.err.println("failed ok");\r
                }\r
                t.setNullSelectionAllowed(true);\r
                t.addListener(this);\r
 \r
-               t = new Table("multi NO-nullsel nullselid");\r
+               t = new Table("multi(fails) NO-nullsel nullselid");\r
                main.addComponent(t);\r
                id = t(t);\r
                t.setNullSelectionItemId(id);\r
                try {\r
                        t.setMultiSelect(true);\r
+                       t.setCaption("multi(SHOLD FAIL BUT DID NOT) NO-nullsel nullselid");\r
                } catch (Exception e) {\r
                        System.err.println("failed ok");\r
                }\r