aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/components/table/ClippedComponentsInTable.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
committerArtur Signell <artur.signell@itmill.com>2009-10-27 07:57:12 +0000
commit6a3c715dae922edd723c9423b4308d5d7948b74e (patch)
tree46a007274681a9803afccf135ace5554f3e01e3a /src/com/vaadin/tests/components/table/ClippedComponentsInTable.java
parent931d75fef69deb9b738fad97001cf5621de9f43e (diff)
downloadvaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.tar.gz
vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.zip
Split demo and tests files to own source folders, for #3298
svn changeset:9390/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/tests/components/table/ClippedComponentsInTable.java')
-rw-r--r--src/com/vaadin/tests/components/table/ClippedComponentsInTable.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/com/vaadin/tests/components/table/ClippedComponentsInTable.java b/src/com/vaadin/tests/components/table/ClippedComponentsInTable.java
deleted file mode 100644
index 8b6775cc74..0000000000
--- a/src/com/vaadin/tests/components/table/ClippedComponentsInTable.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.vaadin.tests.components.table;
-
-import com.vaadin.data.Item;
-import com.vaadin.tests.components.TestBase;
-import com.vaadin.ui.Button;
-import com.vaadin.ui.Table;
-import com.vaadin.ui.TextField;
-
-public class ClippedComponentsInTable extends TestBase {
-
- @Override
- protected String getDescription() {
- return "The table below should display 3 rows. Each with a textfield containing the row number.";
- }
-
- @Override
- protected Integer getTicketNumber() {
- return null;
- }
-
- @Override
- protected void setup() {
- Table t = new Table();
- addComponent(t);
-
- t.addContainerProperty("Name", TextField.class, null);
- t.addContainerProperty("Button", Button.class, null);
-
- for (int i = 0; i < 3; i++) {
- Item item = t.addItem(i);
- TextField tf = new TextField("", String.valueOf(i + 1));
- tf.setColumns(10);
- item.getItemProperty("Name").setValue(tf);
-
- Button b = new Button("OK");
- item.getItemProperty("Button").setValue(b);
- }
-
- }
-}