]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/proxy/ProxyLifeCycle.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / proxy / ProxyLifeCycle.java
index 0615badf4d86aa6aa8789a303fd917137faca3cc..ebc606ead863679539acdd44e7a9429616d985c9 100644 (file)
@@ -1,56 +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.g2d.element.handler.impl.proxy;\r
-\r
-import org.simantics.g2d.diagram.IDiagram;\r
-import org.simantics.g2d.element.IElement;\r
-import org.simantics.g2d.element.handler.LifeCycle;\r
-\r
-/**\r
- * @author Toni Kalajainen\r
- */\r
-public class ProxyLifeCycle implements LifeCycle {\r
-\r
-    private static final long serialVersionUID = 2222511223508932210L;\r
-\r
-    LifeCycle orig;\r
-    IProxyProvider provider;\r
-\r
-    public ProxyLifeCycle(IProxyProvider provider, LifeCycle orig) {\r
-        this.provider = provider;\r
-        this.orig = orig;\r
-    }\r
-\r
-    @Override\r
-    public void onElementActivated(IDiagram d, IElement e) {\r
-        e = provider.provide(e);\r
-        orig.onElementActivated(e.getDiagram(), e);\r
-    }\r
-\r
-    @Override\r
-    public void onElementCreated(IElement e) {\r
-        orig.onElementCreated(provider.provide(e));\r
-    }\r
-\r
-    @Override\r
-    public void onElementDeactivated(IDiagram d, IElement e) {\r
-        e = provider.provide(e);\r
-        orig.onElementDeactivated(e.getDiagram(), e);\r
-    }\r
-\r
-    @Override\r
-    public void onElementDestroyed(IElement e) {\r
-        orig.onElementDestroyed(provider.provide(e));\r
-    }\r
-\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.g2d.element.handler.impl.proxy;
+
+import org.simantics.g2d.diagram.IDiagram;
+import org.simantics.g2d.element.IElement;
+import org.simantics.g2d.element.handler.LifeCycle;
+
+/**
+ * @author Toni Kalajainen
+ */
+public class ProxyLifeCycle implements LifeCycle {
+
+    private static final long serialVersionUID = 2222511223508932210L;
+
+    LifeCycle orig;
+    IProxyProvider provider;
+
+    public ProxyLifeCycle(IProxyProvider provider, LifeCycle orig) {
+        this.provider = provider;
+        this.orig = orig;
+    }
+
+    @Override
+    public void onElementActivated(IDiagram d, IElement e) {
+        e = provider.provide(e);
+        orig.onElementActivated(e.getDiagram(), e);
+    }
+
+    @Override
+    public void onElementCreated(IElement e) {
+        orig.onElementCreated(provider.provide(e));
+    }
+
+    @Override
+    public void onElementDeactivated(IDiagram d, IElement e) {
+        e = provider.provide(e);
+        orig.onElementDeactivated(e.getDiagram(), e);
+    }
+
+    @Override
+    public void onElementDestroyed(IElement e) {
+        orig.onElementDestroyed(provider.provide(e));
+    }
+
+
+}