]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.mapping/src/org/simantics/mapping/constraint/ExistsConstraint.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.mapping / src / org / simantics / mapping / constraint / ExistsConstraint.java
index a5e7238dfd2f19febee6b698216df32b55745ee1..c77c7f5bc022ed22277acb3f05dbb514d56de748 100644 (file)
@@ -1,52 +1,52 @@
-/*******************************************************************************\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.mapping.constraint;\r
-\r
-import gnu.trove.map.hash.TObjectIntHashMap;\r
-\r
-import java.util.Arrays;\r
-\r
-import org.simantics.db.Resource;\r
-import org.simantics.mapping.constraint.instructions.IInstruction;\r
-import org.simantics.utils.datastructures.persistent.ImmutableSet;\r
-\r
-public class ExistsConstraint implements IConstraint {\r
-\r
-       IConstraint constraint;\r
-       Resource[] variables;\r
-       \r
-       public ExistsConstraint(IConstraint constraint, Resource[] variables) {\r
-               this.constraint = constraint;\r
-               this.variables = Arrays.copyOf(variables, variables.length);\r
-       }\r
-\r
-       @Override\r
-       public ImmutableSet<Resource> binds() {\r
-               return constraint.binds();\r
-       }\r
-\r
-       @Override\r
-       public IInstruction createInstruction(\r
-                       TObjectIntHashMap<Resource> variableIds,\r
-                       ImmutableSet<Resource> bound)\r
-                       throws TooManyUnboundVariablesException {\r
-               // TODO Auto-generated method stub\r
-               return null;\r
-       }\r
-\r
-       @Override\r
-       public int isApplicable(ImmutableSet<Resource> bound) {\r
-               // TODO Auto-generated method stub\r
-               return 0;\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.mapping.constraint;
+
+import gnu.trove.map.hash.TObjectIntHashMap;
+
+import java.util.Arrays;
+
+import org.simantics.db.Resource;
+import org.simantics.mapping.constraint.instructions.IInstruction;
+import org.simantics.utils.datastructures.persistent.ImmutableSet;
+
+public class ExistsConstraint implements IConstraint {
+
+       IConstraint constraint;
+       Resource[] variables;
+       
+       public ExistsConstraint(IConstraint constraint, Resource[] variables) {
+               this.constraint = constraint;
+               this.variables = Arrays.copyOf(variables, variables.length);
+       }
+
+       @Override
+       public ImmutableSet<Resource> binds() {
+               return constraint.binds();
+       }
+
+       @Override
+       public IInstruction createInstruction(
+                       TObjectIntHashMap<Resource> variableIds,
+                       ImmutableSet<Resource> bound)
+                       throws TooManyUnboundVariablesException {
+               // TODO Auto-generated method stub
+               return null;
+       }
+
+       @Override
+       public int isApplicable(ImmutableSet<Resource> bound) {
+               // TODO Auto-generated method stub
+               return 0;
+       }
+       
+}