]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/binding/factory/SingleBindingScheme.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / binding / factory / SingleBindingScheme.java
index 23f77d7e20d5af2fbe457c9b6c0fce84856d146b..50e7877cc602b83058c19c1cba1fe846dc9d1222 100644 (file)
@@ -1,46 +1,46 @@
-/*******************************************************************************\r
- * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.\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.databoard.binding.factory;\r
-\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.binding.error.BindingConstructionException;\r
-import org.simantics.databoard.binding.error.RuntimeBindingConstructionException;\r
-import org.simantics.databoard.type.Datatype;\r
-\r
-public class SingleBindingScheme implements BindingScheme {\r
-\r
-       Binding b;\r
-       \r
-       public SingleBindingScheme(Binding b) {\r
-               this.b = b;\r
-       }\r
-\r
-       @Override\r
-       public Binding getBinding(Datatype type)\r
-                       throws BindingConstructionException {\r
-               if (type.equals(b.type())) return b;\r
-               throw new BindingConstructionException(type+" is not supported");\r
-       }\r
-\r
-       @Override\r
-       public Binding getBindingUnchecked(Datatype type)\r
-                       throws RuntimeBindingConstructionException {\r
-               if (type.equals(b.type())) return b;\r
-               throw new RuntimeBindingConstructionException(new BindingConstructionException(type+" is not supported"));\r
-       }\r
-\r
-       @Override\r
-       public boolean supportsType(Datatype type) {\r
-               return type.equals( b.type() );\r
-       }\r
-\r
-}\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007 VTT Technical Research Centre of Finland and others.
+ * 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.databoard.binding.factory;
+
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.binding.error.BindingConstructionException;
+import org.simantics.databoard.binding.error.RuntimeBindingConstructionException;
+import org.simantics.databoard.type.Datatype;
+
+public class SingleBindingScheme implements BindingScheme {
+
+       Binding b;
+       
+       public SingleBindingScheme(Binding b) {
+               this.b = b;
+       }
+
+       @Override
+       public Binding getBinding(Datatype type)
+                       throws BindingConstructionException {
+               if (type.equals(b.type())) return b;
+               throw new BindingConstructionException(type+" is not supported");
+       }
+
+       @Override
+       public Binding getBindingUnchecked(Datatype type)
+                       throws RuntimeBindingConstructionException {
+               if (type.equals(b.type())) return b;
+               throw new RuntimeBindingConstructionException(new BindingConstructionException(type+" is not supported"));
+       }
+
+       @Override
+       public boolean supportsType(Datatype type) {
+               return type.equals( b.type() );
+       }
+
+}
+