]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/service/StatementSupport.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / service / StatementSupport.java
index 58c6842486dd6083d404b72650f0b3e4929065f9..95a08c4c9f5cc2f5a65c20d0dc692b47e56776ae 100644 (file)
@@ -1,30 +1,30 @@
-/*******************************************************************************\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.service;\r
-\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.Statement;\r
-\r
-public interface StatementSupport {\r
-       Statement build(Resource s, Resource p, Resource o);\r
-       boolean subjectEquals(Statement stm, Resource r);\r
-       boolean predicateEquals(Statement stm, Resource r);\r
-       boolean objectEquals(Statement stm, Resource r);\r
-       boolean subjectAsserted(Statement stm);\r
-       boolean predicateAsserted(Statement stm);\r
-       boolean objectAsserted(Statement stm);\r
-       boolean subjectPersistent(Statement stm);\r
-       boolean predicatePersistent(Statement stm);\r
-       boolean objectPersistent(Statement stm);\r
-       boolean isList(Statement stm);\r
-       boolean isTag(Statement stm);\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.service;
+
+import org.simantics.db.Resource;
+import org.simantics.db.Statement;
+
+public interface StatementSupport {
+       Statement build(Resource s, Resource p, Resource o);
+       boolean subjectEquals(Statement stm, Resource r);
+       boolean predicateEquals(Statement stm, Resource r);
+       boolean objectEquals(Statement stm, Resource r);
+       boolean subjectAsserted(Statement stm);
+       boolean predicateAsserted(Statement stm);
+       boolean objectAsserted(Statement stm);
+       boolean subjectPersistent(Statement stm);
+       boolean predicatePersistent(Statement stm);
+       boolean objectPersistent(Statement stm);
+       boolean isList(Statement stm);
+       boolean isTag(Statement stm);
+}