]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.common/src/org/simantics/db/common/procedure/adapter/TransientCacheAsyncListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / procedure / adapter / TransientCacheAsyncListener.java
index 3bb1f9a9485f9ab88d483db454b528dd8e48e955..74af2882820497902e7893addfc9f3f89ce56d09 100644 (file)
@@ -1,54 +1,54 @@
-/*******************************************************************************\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.adapter;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.procedure.AsyncListener;\r
-\r
-/*\r
- * Use this listener to ensure caching for a request. This listener will not lock the request in cache.\r
- * \r
- */\r
-public class TransientCacheAsyncListener <T> implements AsyncListener<T> {\r
-\r
-    @SuppressWarnings("rawtypes")\r
-    private static TransientCacheAsyncListener INSTANCE = new TransientCacheAsyncListener();\r
-\r
-    @SuppressWarnings("unchecked")\r
-    public static <T> TransientCacheAsyncListener<T> instance() {\r
-        return (TransientCacheAsyncListener<T>) INSTANCE;\r
-    }\r
-\r
-    @Override\r
-    public void exception(AsyncReadGraph graph, Throwable t) {\r
-    }\r
-\r
-    @Override\r
-    public void execute(AsyncReadGraph graph, T result) {\r
-    }\r
-\r
-    @Override\r
-    public final boolean isDisposed() {\r
-        return true;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        return TransientCacheAsyncListener.class.hashCode();\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object other) {\r
-        return other instanceof TransientCacheAsyncListener;\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.adapter;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.procedure.AsyncListener;
+
+/*
+ * Use this listener to ensure caching for a request. This listener will not lock the request in cache.
+ * 
+ */
+public class TransientCacheAsyncListener <T> implements AsyncListener<T> {
+
+    @SuppressWarnings("rawtypes")
+    private static TransientCacheAsyncListener INSTANCE = new TransientCacheAsyncListener();
+
+    @SuppressWarnings("unchecked")
+    public static <T> TransientCacheAsyncListener<T> instance() {
+        return (TransientCacheAsyncListener<T>) INSTANCE;
+    }
+
+    @Override
+    public void exception(AsyncReadGraph graph, Throwable t) {
+    }
+
+    @Override
+    public void execute(AsyncReadGraph graph, T result) {
+    }
+
+    @Override
+    public final boolean isDisposed() {
+        return true;
+    }
+
+    @Override
+    public int hashCode() {
+        return TransientCacheAsyncListener.class.hashCode();
+    }
+
+    @Override
+    public boolean equals(Object other) {
+        return other instanceof TransientCacheAsyncListener;
+    }
+
 }
\ No newline at end of file