From: Marc Englund Date: Tue, 4 Dec 2007 10:12:39 +0000 (+0000) Subject: Changed caption for clarity X-Git-Tag: 6.7.0.beta1~5304 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f495e20900a66fb58faa9e520055593f9069d5bf;p=vaadin-framework.git Changed caption for clarity svn changeset:3139/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/demo/featurebrowser/TableExample.java b/src/com/itmill/toolkit/demo/featurebrowser/TableExample.java index e2d51f065c..5d181212ef 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/TableExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/TableExample.java @@ -51,7 +51,7 @@ public class TableExample extends CustomComponent implements Action.Handler, setCompositionRoot(main); // "source" table with bells & whistlesenabled - source = new Table("Also try the row context-menu"); + source = new Table("All creatures"); source.setPageLength(7); source.setWidth(550); source.setColumnCollapsingAllowed(true); @@ -86,7 +86,7 @@ public class TableExample extends CustomComponent implements Action.Handler, horiz.addComponent(deselect); // "saved" table, minimalistic - saved = new Table(); + saved = new Table("Saved creatures"); saved.setPageLength(5); saved.setWidth(550); saved.setSelectable(false); @@ -96,7 +96,7 @@ public class TableExample extends CustomComponent implements Action.Handler, saved.addActionHandler(this); main.addComponent(saved); - CheckBox b = new CheckBox("Editmode"); + CheckBox b = new CheckBox("Modify saved creatures"); b.addListener(new CheckBox.ClickListener() { public void buttonClick(ClickEvent event) { saved.setEditable(((Boolean) event.getButton().getValue())