]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/examples/org/simantics/databoard/example/MyTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / examples / org / simantics / databoard / example / MyTest.java
index 967169c6fa7785688e2b0dd28b944d4b317cc03b..d544d29171063de69c648cf205a498edd8e80623 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\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.databoard.example;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.binding.util.DefaultValue;\r
-import org.simantics.databoard.type.DoubleType;\r
-import org.simantics.databoard.type.RecordType;\r
-import org.simantics.databoard.util.Limit;\r
-import org.simantics.databoard.util.Range;\r
-\r
-public class MyTest {\r
-\r
-       public static void main(String[] args) {\r
-               \r
-               DoubleType t1 = new DoubleType();\r
-               DoubleType t2 = new DoubleType();\r
-               t2.setUnit("m");\r
-               \r
-               System.out.println( t1.hashCode() );\r
-               System.out.println( t2.hashCode() );\r
-               \r
-               \r
-               RecordType r1 = new RecordType();\r
-               RecordType r2 = new RecordType();\r
-               r1.addComponent("x", t1);\r
-               r2.addComponent("x", t2);\r
-               \r
-               System.out.println( r1.hashCode() );\r
-               System.out.println( r2.hashCode() );\r
-               \r
-               t1.setRange( new Range(Limit.nolimit(), Limit.nolimit()) );\r
-               Binding b = Bindings.getBinding(t1);\r
-               DefaultValue dv = new DefaultValue();\r
-               System.out.println(  b.accept( dv )  );\r
-               \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.databoard.example;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.binding.util.DefaultValue;
+import org.simantics.databoard.type.DoubleType;
+import org.simantics.databoard.type.RecordType;
+import org.simantics.databoard.util.Limit;
+import org.simantics.databoard.util.Range;
+
+public class MyTest {
+
+       public static void main(String[] args) {
+               
+               DoubleType t1 = new DoubleType();
+               DoubleType t2 = new DoubleType();
+               t2.setUnit("m");
+               
+               System.out.println( t1.hashCode() );
+               System.out.println( t2.hashCode() );
+               
+               
+               RecordType r1 = new RecordType();
+               RecordType r2 = new RecordType();
+               r1.addComponent("x", t1);
+               r2.addComponent("x", t2);
+               
+               System.out.println( r1.hashCode() );
+               System.out.println( r2.hashCode() );
+               
+               t1.setRange( new Range(Limit.nolimit(), Limit.nolimit()) );
+               Binding b = Bindings.getBinding(t1);
+               DefaultValue dv = new DefaultValue();
+               System.out.println(  b.accept( dv )  );
+               
+       }
+       
+}