]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph.db/src/org/simantics/graph/db/TransferableGraphSource.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graph.db / src / org / simantics / graph / db / TransferableGraphSource.java
index 615001e30cbaf255de4cf7aa01f4ef09df5e3060..f9efe0a91249ed6907ef1f27bbbf6ecf02fe3ee2 100644 (file)
@@ -1,71 +1,71 @@
-/*******************************************************************************\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.db;\r
-\r
-import java.io.Closeable;\r
-import java.io.DataInput;\r
-import java.util.TreeMap;\r
-\r
-import org.simantics.databoard.binding.mutable.Variant;\r
-import org.simantics.databoard.container.DataContainer;\r
-import org.simantics.databoard.type.Datatype;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.graph.representation.Identity;\r
-import org.simantics.graph.representation.Value;\r
-\r
-/*\r
- * NOTE: Current constraints\r
- * \r
- *  §1 The following methods shall be called exactly once in the following order:\r
- *     -getIdentityCount\r
- *     -forIdentities\r
- *     -getStatementCount\r
- *     -forStatements\r
- *     -getValueCount\r
- *     -forValues\r
- * \r
- */\r
-\r
-public interface TransferableGraphSource extends Closeable {\r
-\r
-       public static final byte TAG_RAW_COPY_VARIANT_VALUE = 1;\r
-       public static final byte TAG_POTENTIALLY_MODIFIED_VARIANT_VALUE = 2;\r
-\r
-       @FunctionalInterface\r
-       public interface TransferableGraphSourceProcedure<T> {\r
-               void execute(T value) throws Exception;\r
-       }\r
-\r
-       public interface TransferableGraphSourceValueProcedure {\r
-               void execute(int resource, Datatype type, DataInput input) throws Exception;\r
-               void rawCopy(int resource, int length, DataInput input) throws Exception;\r
-       }\r
-\r
-       public DataContainer getHeader() throws Exception;\r
-       \r
-       public TreeMap<String, Variant> getExtensions() throws Exception;\r
-       \r
-       public int getResourceCount() throws Exception;\r
-\r
-       public int getIdentityCount() throws Exception;\r
-       public void forIdentities(ReadGraph graph, TransferableGraphSourceProcedure<Identity> procedure) throws Exception;\r
-\r
-       public int getStatementCount() throws Exception;\r
-       public void forStatements(ReadGraph graph, TransferableGraphSourceProcedure<int[]> procedure) throws Exception;\r
-       \r
-       public int getValueCount() throws Exception;\r
-       public void forValues(ReadGraph graph, TransferableGraphSourceProcedure<Value> procedure) throws Exception;\r
-       public void forValues2(ReadGraph graph, TransferableGraphSourceValueProcedure procedure) throws Exception;\r
-       \r
-       public void reset() throws Exception;\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.db;
+
+import java.io.Closeable;
+import java.io.DataInput;
+import java.util.TreeMap;
+
+import org.simantics.databoard.binding.mutable.Variant;
+import org.simantics.databoard.container.DataContainer;
+import org.simantics.databoard.type.Datatype;
+import org.simantics.db.ReadGraph;
+import org.simantics.graph.representation.Identity;
+import org.simantics.graph.representation.Value;
+
+/*
+ * NOTE: Current constraints
+ * 
+ *  §1 The following methods shall be called exactly once in the following order:
+ *     -getIdentityCount
+ *     -forIdentities
+ *     -getStatementCount
+ *     -forStatements
+ *     -getValueCount
+ *     -forValues
+ * 
+ */
+
+public interface TransferableGraphSource extends Closeable {
+
+       public static final byte TAG_RAW_COPY_VARIANT_VALUE = 1;
+       public static final byte TAG_POTENTIALLY_MODIFIED_VARIANT_VALUE = 2;
+
+       @FunctionalInterface
+       public interface TransferableGraphSourceProcedure<T> {
+               void execute(T value) throws Exception;
+       }
+
+       public interface TransferableGraphSourceValueProcedure {
+               void execute(int resource, Datatype type, DataInput input) throws Exception;
+               void rawCopy(int resource, int length, DataInput input) throws Exception;
+       }
+
+       public DataContainer getHeader() throws Exception;
+       
+       public TreeMap<String, Variant> getExtensions() throws Exception;
+       
+       public int getResourceCount() throws Exception;
+
+       public int getIdentityCount() throws Exception;
+       public void forIdentities(ReadGraph graph, TransferableGraphSourceProcedure<Identity> procedure) throws Exception;
+
+       public int getStatementCount() throws Exception;
+       public void forStatements(ReadGraph graph, TransferableGraphSourceProcedure<int[]> procedure) throws Exception;
+       
+       public int getValueCount() throws Exception;
+       public void forValues(ReadGraph graph, TransferableGraphSourceProcedure<Value> procedure) throws Exception;
+       public void forValues2(ReadGraph graph, TransferableGraphSourceValueProcedure procedure) throws Exception;
+       
+       public void reset() throws Exception;
+       
+}