]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph/tests/org/simantics/graph/tests/conversion/TransferableGraph0.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.graph / tests / org / simantics / graph / tests / conversion / TransferableGraph0.java
diff --git a/bundles/org.simantics.graph/tests/org/simantics/graph/tests/conversion/TransferableGraph0.java b/bundles/org.simantics.graph/tests/org/simantics/graph/tests/conversion/TransferableGraph0.java
new file mode 100644 (file)
index 0000000..a96161e
--- /dev/null
@@ -0,0 +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