]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.thread/src/org/simantics/utils/threads/test/Test.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.thread / src / org / simantics / utils / threads / test / Test.java
index 900b65171afb75a62839318ed9b18691a9053168..aa8e2cfb6733bd6e4677b839d12f9d8f8879ed92 100644 (file)
@@ -1,76 +1,76 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-/*\r
- *\r
- * @author Toni Kalajainen\r
- */\r
-package org.simantics.utils.threads.test;\r
-\r
-import java.util.Random;\r
-\r
-import org.simantics.utils.threads.ThreadUtils;\r
-import org.simantics.utils.threads.WorkerThread;\r
-\r
-\r
-public class Test {\r
-\r
-       /**\r
-        * @param args\r
-        */\r
-       public static void main(String[] args) {\r
-               final WorkerThread list[] = new WorkerThread[10];\r
-               for (int i =0; i<list.length; i++)\r
-                       list[i] = new WorkerThread();\r
-               \r
-               for (WorkerThread t : list)\r
-                       t.start();\r
-               \r
-               final Random r = new Random();\r
-               \r
-               ExampleObject obj = new ExampleObject();\r
-               \r
-               ExampleListener l = new ExampleListener() {\r
-                       @Override\r
-                       public void onMessage(ExampleObject sender, String msg) {\r
-                               try {\r
-                                       Thread.sleep(1000);\r
-                               } catch (InterruptedException e) {}\r
-                               System.out.println(Thread.currentThread()+": "+msg);\r
-                               ThreadUtils.syncExec(\r
-                                               list[r.nextInt(list.length)],\r
-                                               new Runnable() {\r
-                                                       @Override\r
-                                                       public void run() {\r
-                                                               try {\r
-                                                                       Thread.sleep(1000);\r
-                                                               } catch (InterruptedException e) {}\r
-                                                               System.out.println("blaa");\r
-                                                               try {\r
-                                                                       Thread.sleep(1000);\r
-                                                               } catch (InterruptedException e) {}\r
-                                                       }});\r
-                               try {\r
-                                       Thread.sleep(1000);\r
-                               } catch (InterruptedException e) {}\r
-                       }};\r
-               \r
-               for (WorkerThread t : list)                                             \r
-                       obj.addListener(t, l);\r
-               \r
-               obj.fireMessage("Test");\r
-               System.out.println("jeps");\r
-\r
-               for (WorkerThread t : list)\r
-                       t.stopDispatchingEvents(true);\r
-       }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+/*
+ *
+ * @author Toni Kalajainen
+ */
+package org.simantics.utils.threads.test;
+
+import java.util.Random;
+
+import org.simantics.utils.threads.ThreadUtils;
+import org.simantics.utils.threads.WorkerThread;
+
+
+public class Test {
+
+       /**
+        * @param args
+        */
+       public static void main(String[] args) {
+               final WorkerThread list[] = new WorkerThread[10];
+               for (int i =0; i<list.length; i++)
+                       list[i] = new WorkerThread();
+               
+               for (WorkerThread t : list)
+                       t.start();
+               
+               final Random r = new Random();
+               
+               ExampleObject obj = new ExampleObject();
+               
+               ExampleListener l = new ExampleListener() {
+                       @Override
+                       public void onMessage(ExampleObject sender, String msg) {
+                               try {
+                                       Thread.sleep(1000);
+                               } catch (InterruptedException e) {}
+                               System.out.println(Thread.currentThread()+": "+msg);
+                               ThreadUtils.syncExec(
+                                               list[r.nextInt(list.length)],
+                                               new Runnable() {
+                                                       @Override
+                                                       public void run() {
+                                                               try {
+                                                                       Thread.sleep(1000);
+                                                               } catch (InterruptedException e) {}
+                                                               System.out.println("blaa");
+                                                               try {
+                                                                       Thread.sleep(1000);
+                                                               } catch (InterruptedException e) {}
+                                                       }});
+                               try {
+                                       Thread.sleep(1000);
+                               } catch (InterruptedException e) {}
+                       }};
+               
+               for (WorkerThread t : list)                                             
+                       obj.addListener(t, l);
+               
+               obj.fireMessage("Test");
+               System.out.println("jeps");
+
+               for (WorkerThread t : list)
+                       t.stopDispatchingEvents(true);
+       }
+
+}