]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.common/src/org/simantics/db/common/procedure/wrapper/NoneToAsyncListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / procedure / wrapper / NoneToAsyncListener.java
index 6de18fbf2310b6ce447f31d6ff6c249d4e824b00..d38de911fee8fb9d8e100badb520268417f19997 100644 (file)
@@ -1,60 +1,60 @@
-/*******************************************************************************\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.db.common.procedure.wrapper;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.procedure.AsyncListener;\r
-import org.simantics.db.procedure.Listener;\r
-\r
-final public class NoneToAsyncListener<T> implements AsyncListener<T> {\r
-\r
-       final private Listener<T> procedure;\r
-\r
-       public NoneToAsyncListener(Listener<T> procedure) {\r
-               this.procedure = procedure;\r
-       }\r
-       \r
-       @Override\r
-       public void execute(AsyncReadGraph graph, final T result) {\r
-        procedure.execute(result);\r
-       }\r
-\r
-       @Override\r
-       public void exception(AsyncReadGraph graph, Throwable t) {\r
-               procedure.exception(t);\r
-       }\r
-\r
-       @Override\r
-       public boolean isDisposed() {\r
-           return procedure.isDisposed();\r
-       }\r
-       \r
-    @Override\r
-    public String toString() {\r
-        return "NoneToAsyncListener -> " + procedure;\r
-   }\r
-    \r
-    @Override\r
-    public int hashCode() {\r
-        return procedure.hashCode();\r
-    }\r
-    \r
-    @Override\r
-    public boolean equals(Object arg0) {\r
-        if(arg0 instanceof NoneToAsyncListener) {\r
-            return procedure.equals(((NoneToAsyncListener<?>)arg0).procedure);\r
-        } else {\r
-            return procedure.equals(arg0);\r
-        }\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.db.common.procedure.wrapper;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.procedure.AsyncListener;
+import org.simantics.db.procedure.Listener;
+
+final public class NoneToAsyncListener<T> implements AsyncListener<T> {
+
+       final private Listener<T> procedure;
+
+       public NoneToAsyncListener(Listener<T> procedure) {
+               this.procedure = procedure;
+       }
+       
+       @Override
+       public void execute(AsyncReadGraph graph, final T result) {
+        procedure.execute(result);
+       }
+
+       @Override
+       public void exception(AsyncReadGraph graph, Throwable t) {
+               procedure.exception(t);
+       }
+
+       @Override
+       public boolean isDisposed() {
+           return procedure.isDisposed();
+       }
+       
+    @Override
+    public String toString() {
+        return "NoneToAsyncListener -> " + procedure;
+   }
+    
+    @Override
+    public int hashCode() {
+        return procedure.hashCode();
+    }
+    
+    @Override
+    public boolean equals(Object arg0) {
+        if(arg0 instanceof NoneToAsyncListener) {
+            return procedure.equals(((NoneToAsyncListener<?>)arg0).procedure);
+        } else {
+            return procedure.equals(arg0);
+        }
+    }
+       
+}