]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/Resource.java
Fail safe import fixes made by Antti
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / Resource.java
index 4a38f1b064e79b3b41d3d5fa3e605ff857ca85b8..18ad6b737500d22869b4c5336e34c40855b30437 100644 (file)
@@ -1,49 +1,49 @@
-/*******************************************************************************\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.db;\r
-\r
-import org.simantics.utils.Container;\r
-\r
-/**\r
- * A Graph independent reference to a resource. These can be stored between\r
- * transactions and later used with any {@link RequestProcessor} or\r
- * {@link AsyncRequestProcessor} that originates from a Session with the same\r
- * database.\r
- * \r
- * <p>\r
- * Resources are considered implementation dependent. Therefore\r
- * <code>Resource</code> instances from different implementations of this\r
- * database connection API should not be used together.\r
- * </p>\r
- * \r
- * <p>\r
- * This interface should not be implemented by clients.\r
- * </p>\r
- * \r
- * @author Tuukka Lehtonen\r
- * @see AsyncReadGraph\r
- * @see ReadGraph\r
- * @see WriteGraph\r
- */\r
-public interface Resource extends Container<Resource>, Comparable<Resource> {\r
-\r
-    Resource[] NONE = new Resource[0];\r
-\r
-    long getResourceId();\r
-    \r
-    int getThreadHash();\r
-    \r
-    boolean isPersistent();\r
-    \r
-    boolean equalsResource(Resource other);\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.db;
+
+import org.simantics.utils.Container;
+
+/**
+ * A Graph independent reference to a resource. These can be stored between
+ * transactions and later used with any {@link RequestProcessor} or
+ * {@link AsyncRequestProcessor} that originates from a Session with the same
+ * database.
+ * 
+ * <p>
+ * Resources are considered implementation dependent. Therefore
+ * <code>Resource</code> instances from different implementations of this
+ * database connection API should not be used together.
+ * </p>
+ * 
+ * <p>
+ * This interface should not be implemented by clients.
+ * </p>
+ * 
+ * @author Tuukka Lehtonen
+ * @see AsyncReadGraph
+ * @see ReadGraph
+ * @see WriteGraph
+ */
+public interface Resource extends Container<Resource>, Comparable<Resource> {
+
+    Resource[] NONE = new Resource[0];
+
+    long getResourceId();
+    
+    int getThreadHash();
+    
+    boolean isPersistent();
+    
+    boolean equalsResource(Resource other);
+
+}