]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.simulation/src/org/simantics/simulation/data/AbstractDatasource.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / data / AbstractDatasource.java
index 3814b6c1638228f70ab600306434f9aec833df37..4a15cba5214eb4eed4bdeb540a2f925a9b3fa97e 100644 (file)
@@ -1,62 +1,62 @@
-/*******************************************************************************\r
- * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.\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.simulation.data;\r
-\r
-import java.util.concurrent.locks.Lock;\r
-import java.util.concurrent.locks.ReentrantLock;\r
-\r
-import org.simantics.utils.datastructures.ListenerList;\r
-\r
-/**\r
- * @author Toni Kalajainen\r
- */\r
-public abstract class AbstractDatasource implements Datasource {\r
-\r
-    protected ListenerList<DatasourceListener> listeners = new ListenerList<DatasourceListener>(DatasourceListener.class);\r
-    protected Lock readLock, writeLock;\r
-\r
-    public AbstractDatasource() {\r
-//        ReentrantReadWriteLock l = new ReentrantReadWriteLock();\r
-//        this.readLock = l.readLock();\r
-//        this.writeLock = l.writeLock();\r
-        this.readLock = this.writeLock = new ReentrantLock();\r
-    }\r
-\r
-    @Override\r
-    public void addListener(DatasourceListener listener) {\r
-        listeners.add(listener);\r
-    }\r
-\r
-    @Override\r
-    public void removeListener(DatasourceListener listener) {\r
-        listeners.remove(listener);\r
-    }\r
-\r
-    protected void notifyStep() {\r
-        for (final DatasourceListener l : listeners.getListeners()) {\r
-            if (l.getExecutor() == null) {\r
-                l.onStep( AbstractDatasource.this );\r
-            } else {\r
-                l.getExecutor().execute(new Runnable() {\r
-                    public void run() {\r
-                        l.onStep(AbstractDatasource.this);\r
-                    }\r
-                });\r
-            }\r
-        }\r
-    }\r
-\r
-    @Override\r
-    public Lock readLock() {\r
-        return readLock;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.
+ * 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.simulation.data;
+
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+import org.simantics.utils.datastructures.ListenerList;
+
+/**
+ * @author Toni Kalajainen
+ */
+public abstract class AbstractDatasource implements Datasource {
+
+    protected ListenerList<DatasourceListener> listeners = new ListenerList<DatasourceListener>(DatasourceListener.class);
+    protected Lock readLock, writeLock;
+
+    public AbstractDatasource() {
+//        ReentrantReadWriteLock l = new ReentrantReadWriteLock();
+//        this.readLock = l.readLock();
+//        this.writeLock = l.writeLock();
+        this.readLock = this.writeLock = new ReentrantLock();
+    }
+
+    @Override
+    public void addListener(DatasourceListener listener) {
+        listeners.add(listener);
+    }
+
+    @Override
+    public void removeListener(DatasourceListener listener) {
+        listeners.remove(listener);
+    }
+
+    protected void notifyStep() {
+        for (final DatasourceListener l : listeners.getListeners()) {
+            if (l.getExecutor() == null) {
+                l.onStep( AbstractDatasource.this );
+            } else {
+                l.getExecutor().execute(new Runnable() {
+                    public void run() {
+                        l.onStep(AbstractDatasource.this);
+                    }
+                });
+            }
+        }
+    }
+
+    @Override
+    public Lock readLock() {
+        return readLock;
+    }
+
+}