]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling/src/org/simantics/modeling/adapters/MonitorRemover.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / adapters / MonitorRemover.java
index cd95be2cf54de29436f9e310c2984a3aeebb0dba..8a0fd523dd0f3f8db98611a828c32c3d4d33fb1d 100644 (file)
@@ -1,59 +1,59 @@
-/*******************************************************************************\r
- * Copyright (c) 2012 Association for Decentralized Information Management in\r
- * 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.modeling.adapters;\r
-\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.common.utils.OrderedSetUtils;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.adapter.Remover;\r
-import org.simantics.db.layer0.adapter.impl.EntityRemover;\r
-import org.simantics.layer0.utils.binaryPredicates.OrderedSetElementsPredicate;\r
-\r
-/**\r
- * A {@link Remover} implementation for removing DIA.Monitor instances.\r
- * \r
- * TODO: see why we couldn't just use ElementRemover for monitors? Previously\r
- * DIA.Monitors were explicitly declared in adapters.xml to adapt to\r
- * EntityRemover, not ElementRemover. There had to be some reason for that\r
- * choice.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class MonitorRemover extends EntityRemover {\r
-\r
-    private static final boolean DEBUG = false;\r
-\r
-    public MonitorRemover(Resource element) throws DatabaseException {\r
-        super(element);\r
-    }\r
-\r
-    @Override\r
-    public void remove(WriteGraph graph) throws DatabaseException {\r
-        if (DEBUG)\r
-            System.out.println(this + " removing monitor");\r
-\r
-        // 1. Disconnect element from diagrams\r
-        for (Resource diagram : OrderedSetElementsPredicate.INSTANCE.getSubjects(graph, resource)) {\r
-            OrderedSetUtils.remove(graph, diagram, resource);\r
-        }\r
-\r
-        // 2. Delete element itself\r
-        EntityRemover.remove(graph, resource);\r
-    }\r
-\r
-    @Override\r
-    public String toString() {\r
-        return getClass().getSimpleName() + resource;\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2012 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.modeling.adapters;
+
+import org.simantics.db.Resource;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.common.utils.OrderedSetUtils;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.adapter.Remover;
+import org.simantics.db.layer0.adapter.impl.EntityRemover;
+import org.simantics.layer0.utils.binaryPredicates.OrderedSetElementsPredicate;
+
+/**
+ * A {@link Remover} implementation for removing DIA.Monitor instances.
+ * 
+ * TODO: see why we couldn't just use ElementRemover for monitors? Previously
+ * DIA.Monitors were explicitly declared in adapters.xml to adapt to
+ * EntityRemover, not ElementRemover. There had to be some reason for that
+ * choice.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class MonitorRemover extends EntityRemover {
+
+    private static final boolean DEBUG = false;
+
+    public MonitorRemover(Resource element) throws DatabaseException {
+        super(element);
+    }
+
+    @Override
+    public void remove(WriteGraph graph) throws DatabaseException {
+        if (DEBUG)
+            System.out.println(this + " removing monitor");
+
+        // 1. Disconnect element from diagrams
+        for (Resource diagram : OrderedSetElementsPredicate.INSTANCE.getSubjects(graph, resource)) {
+            OrderedSetUtils.remove(graph, diagram, resource);
+        }
+
+        // 2. Delete element itself
+        EntityRemover.remove(graph, resource);
+    }
+
+    @Override
+    public String toString() {
+        return getClass().getSimpleName() + resource;
+    }
+
+}