]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Preference.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / Preference.java
index 7bd6d901f27031c2c699709d154bdfa78212106e..3aeddafd2229153772152b4a883cadc0b36d9988 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.browsing.ui.common;\r
-\r
-/**\r
- * A generic wrapper that associates a double-based preference indicator value\r
- * for any object. This class can be used make objects comparable.\r
- * \r
- * @author Tuukka Lehtonen\r
- * \r
- * @param <T> the type of the object to be made comparable\r
- */\r
-public class Preference<T> implements Comparable<Preference<T>> {\r
-    public final T      object;\r
-    public final double preference;\r
-\r
-    public Preference(T object, double preference) {\r
-        this.object = object;\r
-        this.preference = preference;\r
-    }\r
-\r
-    @Override\r
-    public int compareTo(Preference<T> other) {\r
-        if (preference == other.preference)\r
-            return 0;\r
-        return (preference > other.preference) ? -1 : 1;\r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-       return object + " with preference " + preference;\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.browsing.ui.common;
+
+/**
+ * A generic wrapper that associates a double-based preference indicator value
+ * for any object. This class can be used make objects comparable.
+ * 
+ * @author Tuukka Lehtonen
+ * 
+ * @param <T> the type of the object to be made comparable
+ */
+public class Preference<T> implements Comparable<Preference<T>> {
+    public final T      object;
+    public final double preference;
+
+    public Preference(T object, double preference) {
+        this.object = object;
+        this.preference = preference;
+    }
+
+    @Override
+    public int compareTo(Preference<T> other) {
+        if (preference == other.preference)
+            return 0;
+        return (preference > other.preference) ? -1 : 1;
+    }
+    
+    @Override
+    public String toString() {
+       return object + " with preference " + preference;
+    }
+    
 }
\ No newline at end of file