]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.common/src/org/simantics/db/common/procedure/adapter/StagedListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / procedure / adapter / StagedListener.java
index 4b57c8b62a9815bf7e8a594715139c70794c4b7f..fde29557917d25c621dca2e813c5dedf75b99e03 100644 (file)
@@ -1,43 +1,43 @@
-/*******************************************************************************\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 java.util.concurrent.atomic.AtomicBoolean;\r
-\r
-import org.simantics.db.procedure.Listener;\r
-\r
-abstract public class StagedListener<T> implements Listener<T> {\r
-\r
-       final private AtomicBoolean first = new AtomicBoolean(true); \r
-       \r
-       @Override\r
-    public void exception(Throwable t) {\r
-    }\r
-\r
-    @Override\r
-    final public void execute(T result) {\r
-       if(first.compareAndSet(true, false)) {\r
-               first(result);\r
-       } else {\r
-               rest(result);\r
-       }\r
-    }\r
-\r
-    @Override\r
-    public boolean isDisposed() {\r
-        return false;\r
-    }\r
-\r
-    abstract public void first(T result);\r
-    abstract public void rest(T result);\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 java.util.concurrent.atomic.AtomicBoolean;
+
+import org.simantics.db.procedure.Listener;
+
+abstract public class StagedListener<T> implements Listener<T> {
+
+       final private AtomicBoolean first = new AtomicBoolean(true); 
+       
+       @Override
+    public void exception(Throwable t) {
+    }
+
+    @Override
+    final public void execute(T result) {
+       if(first.compareAndSet(true, false)) {
+               first(result);
+       } else {
+               rest(result);
+       }
+    }
+
+    @Override
+    public boolean isDisposed() {
+        return false;
+    }
+
+    abstract public void first(T result);
+    abstract public void rest(T result);
+
+}