]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/RelationInfo.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / RelationInfo.java
index cc0dfa09ce2666c584c0a6dbcdc5b8541ab364da..fb4c4820a43442dd97c8d7d545e109abfb74e78c 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;\r
-\r
-\r
-\r
-final public class RelationInfo {\r
-    \r
-    public static final RelationInfo[] NONE = new RelationInfo[0];\r
-    public final int predicate;\r
-    public final boolean isFunctional;\r
-    public final boolean isFinal;\r
-    public final boolean isAsserted;\r
-    \r
-    public RelationInfo(final int predicate, final boolean isFunctional, final boolean isFinal, final boolean isAsserted) {\r
-        this.predicate = predicate;\r
-        this.isFunctional = isFunctional;\r
-        this.isFinal = isFinal;\r
-        this.isAsserted = isAsserted;\r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-       return "RelationInfo[predicate=" + predicate + ", isFunctional=" + isFunctional + ", isFinal=" + isFinal + ", isAsserted=" + isAsserted + "]";\r
-    }\r
-    \r
-    @Override\r
-    public int hashCode() {\r
-        return 31 * predicate;\r
-    }\r
-\r
-    @Override\r
-    public boolean equals(Object object) {\r
-        if (this == object)\r
-            return true;\r
-        else if (object == null)\r
-            return false;\r
-        else if (RelationInfo.class != object.getClass())\r
-            return false;\r
-        RelationInfo r = (RelationInfo)object;\r
-        return r.predicate == predicate && r.isFinal == isFinal && r.isFunctional == isFunctional;\r
-    }\r
-    \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;
+
+
+
+final public class RelationInfo {
+    
+    public static final RelationInfo[] NONE = new RelationInfo[0];
+    public final int predicate;
+    public final boolean isFunctional;
+    public final boolean isFinal;
+    public final boolean isAsserted;
+    
+    public RelationInfo(final int predicate, final boolean isFunctional, final boolean isFinal, final boolean isAsserted) {
+        this.predicate = predicate;
+        this.isFunctional = isFunctional;
+        this.isFinal = isFinal;
+        this.isAsserted = isAsserted;
+    }
+    
+    @Override
+    public String toString() {
+       return "RelationInfo[predicate=" + predicate + ", isFunctional=" + isFunctional + ", isFinal=" + isFinal + ", isAsserted=" + isAsserted + "]";
+    }
+    
+    @Override
+    public int hashCode() {
+        return 31 * predicate;
+    }
+
+    @Override
+    public boolean equals(Object object) {
+        if (this == object)
+            return true;
+        else if (object == null)
+            return false;
+        else if (RelationInfo.class != object.getClass())
+            return false;
+        RelationInfo r = (RelationInfo)object;
+        return r.predicate == predicate && r.isFinal == isFinal && r.isFunctional == isFunctional;
+    }
+    
+    
+}