]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph/tests/org/simantics/graph/tests/conversion/TransferableGraph0.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graph / tests / org / simantics / graph / tests / conversion / TransferableGraph0.java
index a96161eb11e5b0a03e63b0b4f5d7f6d387a52b96..83c3aef85737356de28059c6cbbc4197518a53fd 100644 (file)
@@ -1,56 +1,56 @@
-/*******************************************************************************\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.graph.tests.conversion;\r
-\r
-import java.util.TreeMap;\r
-\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.databoard.binding.Binding;\r
-import org.simantics.databoard.binding.mutable.Variant;\r
-import org.simantics.databoard.serialization.Serializer;\r
-import org.simantics.graph.representation.Identity;\r
-import org.simantics.graph.representation.TransferableGraph1;\r
-import org.simantics.graph.representation.Value;\r
-\r
-/**\r
- * @author Hannu Niemistö\r
- * @deprecated superceded by {@link TransferableGraph1}\r
- */\r
-@Deprecated\r
-public class TransferableGraph0 {\r
-       public static Binding BINDING = Bindings.getBindingUnchecked(TransferableGraph0.class);\r
-       public static Serializer SERIALIZER = Bindings.getSerializerUnchecked(BINDING);\r
-       \r
-       public int resourceCount;       \r
-       public Identity[] identities;   \r
-       public int[] statements;\r
-       public Value[] values;  \r
-       public TreeMap<String, Variant> extensions;\r
-       \r
-       public TransferableGraph0() {     \r
-    }\r
-       \r
-       public TransferableGraph0(int resourceCount, Identity[] identities,\r
-                       int[] statements, Value[] values) {\r
-               this(resourceCount, identities, statements, values,\r
-                               new TreeMap<String, Variant>());\r
-       }\r
-       \r
-       public TransferableGraph0(int resourceCount, Identity[] identities,\r
-                       int[] statements, Value[] values, TreeMap<String, Variant> extensions) {\r
-               this.resourceCount = resourceCount;\r
-               this.identities = identities;\r
-               this.statements = statements;\r
-               this.values = values;\r
-               this.extensions = extensions;\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.graph.tests.conversion;
+
+import java.util.TreeMap;
+
+import org.simantics.databoard.Bindings;
+import org.simantics.databoard.binding.Binding;
+import org.simantics.databoard.binding.mutable.Variant;
+import org.simantics.databoard.serialization.Serializer;
+import org.simantics.graph.representation.Identity;
+import org.simantics.graph.representation.TransferableGraph1;
+import org.simantics.graph.representation.Value;
+
+/**
+ * @author Hannu Niemist&ouml;
+ * @deprecated superceded by {@link TransferableGraph1}
+ */
+@Deprecated
+public class TransferableGraph0 {
+       public static Binding BINDING = Bindings.getBindingUnchecked(TransferableGraph0.class);
+       public static Serializer SERIALIZER = Bindings.getSerializerUnchecked(BINDING);
+       
+       public int resourceCount;       
+       public Identity[] identities;   
+       public int[] statements;
+       public Value[] values;  
+       public TreeMap<String, Variant> extensions;
+       
+       public TransferableGraph0() {     
+    }
+       
+       public TransferableGraph0(int resourceCount, Identity[] identities,
+                       int[] statements, Value[] values) {
+               this(resourceCount, identities, statements, values,
+                               new TreeMap<String, Variant>());
+       }
+       
+       public TransferableGraph0(int resourceCount, Identity[] identities,
+                       int[] statements, Value[] values, TreeMap<String, Variant> extensions) {
+               this.resourceCount = resourceCount;
+               this.identities = identities;
+               this.statements = statements;
+               this.values = values;
+               this.extensions = extensions;
+       }
+}