]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/PartNameListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / PartNameListener.java
index 23c5f7b56e6d3f6c1fe438b5e911e62650bb3df7..38b05b193037f639eece9effc4b8865af0e7afa4 100644 (file)
@@ -1,75 +1,75 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2012 Association for Decentralized Information Management in\r
- * 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.browsing.ui.swt;\r
-\r
-\r
-import java.util.function.Consumer;\r
-\r
-import org.simantics.db.common.procedure.adapter.ListenerSupport;\r
-import org.simantics.db.procedure.Listener;\r
-import org.simantics.utils.ObjectUtils;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class PartNameListener extends PartNameProcedure implements Listener<String> {\r
-\r
-    private boolean         disposed = false;\r
-    private ListenerSupport support;\r
-\r
-    public PartNameListener(Consumer<String> updateCallback) {\r
-        super(updateCallback);\r
-        support = null;\r
-    }\r
-\r
-    public PartNameListener(Consumer<String> updateCallback, ListenerSupport support) {\r
-        super(updateCallback);\r
-        this.support = support;\r
-    }\r
-\r
-    @Override\r
-    public void exception(Throwable t) {\r
-        if (support != null)\r
-            support.exception(t);\r
-        else\r
-            super.exception(t);\r
-    }\r
-\r
-    public void dispose() {\r
-        disposed = true;\r
-    }\r
-\r
-    @Override\r
-    public boolean isDisposed() {\r
-        boolean d = disposed || (support != null && support.isDisposed());\r
-        return d;\r
-    }\r
-\r
-    @Override\r
-    public int hashCode() {\r
-        return ObjectUtils.hashCode(support) + 31 * ObjectUtils.hashCode(updateCallback);\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (this == obj)\r
-            return true;\r
-        if (obj == null)\r
-            return false;\r
-        if (getClass() != obj.getClass())\r
-            return false;\r
-        PartNameListener other = (PartNameListener) obj;\r
-        return ObjectUtils.objectEquals(support, other.support)\r
-                && ObjectUtils.objectEquals(updateCallback, other.updateCallback);\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2012 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.browsing.ui.swt;
+
+
+import java.util.function.Consumer;
+
+import org.simantics.db.common.procedure.adapter.ListenerSupport;
+import org.simantics.db.procedure.Listener;
+import org.simantics.utils.ObjectUtils;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class PartNameListener extends PartNameProcedure implements Listener<String> {
+
+    private boolean         disposed = false;
+    private ListenerSupport support;
+
+    public PartNameListener(Consumer<String> updateCallback) {
+        super(updateCallback);
+        support = null;
+    }
+
+    public PartNameListener(Consumer<String> updateCallback, ListenerSupport support) {
+        super(updateCallback);
+        this.support = support;
+    }
+
+    @Override
+    public void exception(Throwable t) {
+        if (support != null)
+            support.exception(t);
+        else
+            super.exception(t);
+    }
+
+    public void dispose() {
+        disposed = true;
+    }
+
+    @Override
+    public boolean isDisposed() {
+        boolean d = disposed || (support != null && support.isDisposed());
+        return d;
+    }
+
+    @Override
+    public int hashCode() {
+        return ObjectUtils.hashCode(support) + 31 * ObjectUtils.hashCode(updateCallback);
+    }
+
+    @Override
+    public boolean equals(Object obj) {
+        if (this == obj)
+            return true;
+        if (obj == null)
+            return false;
+        if (getClass() != obj.getClass())
+            return false;
+        PartNameListener other = (PartNameListener) obj;
+        return ObjectUtils.objectEquals(support, other.support)
+                && ObjectUtils.objectEquals(updateCallback, other.updateCallback);
+    }
+
+}