From 6a3c715dae922edd723c9423b4308d5d7948b74e Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 27 Oct 2009 07:57:12 +0000 Subject: Split demo and tests files to own source folders, for #3298 svn changeset:9390/svn branch:6.2 --- src/com/vaadin/tests/tickets/Ticket2339.java | 38 ---------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/com/vaadin/tests/tickets/Ticket2339.java (limited to 'src/com/vaadin/tests/tickets/Ticket2339.java') diff --git a/src/com/vaadin/tests/tickets/Ticket2339.java b/src/com/vaadin/tests/tickets/Ticket2339.java deleted file mode 100644 index 6476807ada..0000000000 --- a/src/com/vaadin/tests/tickets/Ticket2339.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.vaadin.tests.tickets; - -import java.io.ByteArrayInputStream; -import java.io.IOException; - -import com.vaadin.Application; -import com.vaadin.ui.Button; -import com.vaadin.ui.CustomLayout; -import com.vaadin.ui.Window; - -public class Ticket2339 extends Application { - - @Override - public void init() { - - final Window mainWin = new Window(getClass().getSimpleName()); - setMainWindow(mainWin); - - try { - CustomLayout cl = new CustomLayout( - new ByteArrayInputStream( - "
" - .getBytes())); - Button button = new Button("b"); - button.setSizeFull(); - - cl.addComponent(button, "b"); - - mainWin.addComponent(cl); - - } catch (IOException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - - } - -} -- cgit v1.2.3