]> source.dussan.org Git - vaadin-framework.git/commitdiff
Un-java5-ified six more files. I love doing this.
authorMarc Englund <marc.englund@itmill.com>
Tue, 26 Aug 2008 06:39:28 +0000 (06:39 +0000)
committerMarc Englund <marc.englund@itmill.com>
Tue, 26 Aug 2008 06:39:28 +0000 (06:39 +0000)
svn changeset:5263/svn branch:trunk

src/com/itmill/toolkit/tests/tickets/Ticket1972.java
src/com/itmill/toolkit/tests/tickets/Ticket1975.java
src/com/itmill/toolkit/tests/tickets/Ticket1995.java
src/com/itmill/toolkit/tests/tickets/Ticket2002.java
src/com/itmill/toolkit/tests/tickets/Ticket2011.java
src/com/itmill/toolkit/tests/tickets/Ticket677.java

index efdebac3635c1e11c097250fbe78ad60774ec745..6377b12e1f3b84cbc8e1e1c9e72d7f301f35c698 100644 (file)
@@ -8,7 +8,7 @@ import com.itmill.toolkit.ui.Window;
 public class Ticket1972 extends Application {\r
 \r
     public void init() {\r
-        Window w = new Window(getClass().getSimpleName());\r
+        Window w = new Window(getClass().getName());\r
         setMainWindow(w);\r
         setTheme("tests-ticket");\r
         GridLayout layout = new GridLayout(3, 3);\r
index d0120624c17f3eb29be244665e6e425ebb1d4703..c5d0ec90f1a918a1e3831227d49833a1d0574911 100644 (file)
@@ -19,7 +19,7 @@ public class Ticket1975 extends Application {
     private CustomLayout cl2;\r
 \r
     public void init() {\r
-        Window w = new Window(getClass().getSimpleName());\r
+        Window w = new Window(getClass().getName());\r
         setMainWindow(w);\r
         setTheme("tests-tickets");\r
         GridLayout layout = new GridLayout(1, 10);\r
@@ -46,8 +46,9 @@ public class Ticket1975 extends Application {
 \r
                     }));\r
             File f = new File(wc.getBaseDirectory().getAbsoluteFile()\r
-                    + "/ITMILL/themes/" + getTheme() + "/layouts/Ticket1975.html");\r
-                    \r
+                    + "/ITMILL/themes/" + getTheme()\r
+                    + "/layouts/Ticket1975.html");\r
+\r
             cl2 = new CustomLayout(new FileInputStream(f));\r
             layout.addComponent(cl2);\r
 \r
index 116b35ffeef463b87a61e7fd418f39992cf3ce2e..c07983628265cd4843aee27f5428f008ff1a0bab 100644 (file)
@@ -15,7 +15,7 @@ public class Ticket1995 extends Application {
     private Table table;\r
 \r
     public void init() {\r
-        final Window mainWin = new Window(getClass().getSimpleName());\r
+        final Window mainWin = new Window(getClass().getName());\r
         setMainWindow(mainWin);\r
 \r
         table = new Table();\r
index 2e69a66745a98596413b6550c8094b1a8a5f7171..eec74108a00f11daa3364fe3e55cf058eb2d15c3 100644 (file)
@@ -27,7 +27,7 @@ public class Ticket2002 extends Application {
     }\r
 \r
     public void init() {\r
-        Window w = new Window(getClass().getSimpleName());\r
+        Window w = new Window(getClass().getName());\r
         setMainWindow(w);\r
 \r
         GridLayout layout = new GridLayout(2, 2);\r
index 8b9b0f0694accd9e402214fd533db2c2597dadc9..eeabff0da2bd0c2d6655f3223c77b5b9dde76c81 100644 (file)
@@ -8,7 +8,7 @@ import com.itmill.toolkit.ui.Window;
 public class Ticket2011 extends Application {\r
 \r
     public void init() {\r
-        Window w = new Window(getClass().getSimpleName());\r
+        Window w = new Window(getClass().getName());\r
         setMainWindow(w);\r
         // setTheme("tests-ticket");\r
         GridLayout layout = new GridLayout(10, 10);\r
index 7112e84556d4fd187f637a3849324b1d8975433c..b55049a5600ef431d1f0d56fda714c3d12a8b20e 100644 (file)
@@ -23,7 +23,7 @@ public class Ticket677 extends Application {
     private Form form;\r
 \r
     public void init() {\r
-        Window w = new Window(getClass().getSimpleName());\r
+        Window w = new Window(getClass().getName());\r
         setMainWindow(w);\r
         // setTheme("tests-ticket");\r
         GridLayout layout = new GridLayout(10, 10);\r