]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils/src/org/simantics/utils/RunnableWithObject.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils / src / org / simantics / utils / RunnableWithObject.java
index 3c00b219ca6fbd8656e7b609d88c3347994b86f6..2aa16a65c76a32ee9cb2de8b09c858c425bc1c0c 100644 (file)
@@ -1,61 +1,61 @@
-/*******************************************************************************\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
-package org.simantics.utils;\r
-\r
-/**\r
- * This class is intended to be used as anonymous \r
- * inner class\r
- * \r
- * \r
- * @author Toni Kalajainen\r
- */\r
-public class RunnableWithObject implements Runnable {\r
-\r
-    protected Object object, object2;\r
-    \r
-    protected Object objs[];\r
-    \r
-    public RunnableWithObject(Object o) {\r
-        object = o;\r
-        objs = new Object[] {o};\r
-    }\r
-\r
-    public RunnableWithObject(Object o, Object o2) {\r
-        object = o;\r
-        object2 = o2;\r
-        objs = new Object[] {o, o2};\r
-    }\r
-\r
-    public RunnableWithObject(Object... objs) {\r
-        this.objs = objs;\r
-        if (objs.length>=1)\r
-            object = objs[0];\r
-        if (objs.length>=2)\r
-            object2 = objs[1];\r
-    }\r
-    \r
-    public void run() {\r
-    }\r
-    \r
-    public Object getObject() {\r
-        return object;\r
-    }\r
-    \r
-    public int count() {\r
-        return objs.length;\r
-    }\r
-    \r
-    public Object getObject(int index) {\r
-        return objs[index];\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
+ *******************************************************************************/
+package org.simantics.utils;
+
+/**
+ * This class is intended to be used as anonymous 
+ * inner class
+ * 
+ * 
+ * @author Toni Kalajainen
+ */
+public class RunnableWithObject implements Runnable {
+
+    protected Object object, object2;
+    
+    protected Object objs[];
+    
+    public RunnableWithObject(Object o) {
+        object = o;
+        objs = new Object[] {o};
+    }
+
+    public RunnableWithObject(Object o, Object o2) {
+        object = o;
+        object2 = o2;
+        objs = new Object[] {o, o2};
+    }
+
+    public RunnableWithObject(Object... objs) {
+        this.objs = objs;
+        if (objs.length>=1)
+            object = objs[0];
+        if (objs.length>=2)
+            object2 = objs[1];
+    }
+    
+    public void run() {
+    }
+    
+    public Object getObject() {
+        return object;
+    }
+    
+    public int count() {
+        return objs.length;
+    }
+    
+    public Object getObject(int index) {
+        return objs[index];
+    }
+
+}