]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.workbench/src/org/simantics/workbench/internal/contributions/e4/ClosePartHandler.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.workbench / src / org / simantics / workbench / internal / contributions / e4 / ClosePartHandler.java
index 96c4c7121dd51d1f15d0ca744b0864c17a3228a8..b123fdab8353626f06bb5431d060dc7dde8f6e98 100644 (file)
@@ -1,28 +1,28 @@
-package org.simantics.workbench.internal.contributions.e4;\r
-\r
-import javax.inject.Inject;\r
-import javax.inject.Named;\r
-\r
-import org.eclipse.e4.core.di.annotations.CanExecute;\r
-import org.eclipse.e4.core.di.annotations.Execute;\r
-import org.eclipse.e4.ui.model.application.ui.basic.MPart;\r
-import org.eclipse.e4.ui.services.IServiceConstants;\r
-import org.eclipse.e4.ui.workbench.modeling.EPartService;\r
-\r
-public class ClosePartHandler {\r
-\r
-    @Inject\r
-    EPartService partService;\r
-\r
-    @CanExecute\r
-    public boolean canExecute(@Named(IServiceConstants.ACTIVE_PART) MPart activePart) {\r
-        if (activePart == null)\r
-            return false;\r
-        return activePart.isCloseable();\r
-    }\r
-\r
-    @Execute\r
-    public void closePart(@Named(IServiceConstants.ACTIVE_PART) MPart activePart) {\r
-        partService.hidePart(activePart);\r
-    }\r
-}\r
+package org.simantics.workbench.internal.contributions.e4;
+
+import javax.inject.Inject;
+import javax.inject.Named;
+
+import org.eclipse.e4.core.di.annotations.CanExecute;
+import org.eclipse.e4.core.di.annotations.Execute;
+import org.eclipse.e4.ui.model.application.ui.basic.MPart;
+import org.eclipse.e4.ui.services.IServiceConstants;
+import org.eclipse.e4.ui.workbench.modeling.EPartService;
+
+public class ClosePartHandler {
+
+    @Inject
+    EPartService partService;
+
+    @CanExecute
+    public boolean canExecute(@Named(IServiceConstants.ACTIVE_PART) MPart activePart) {
+        if (activePart == null)
+            return false;
+        return activePart.isCloseable();
+    }
+
+    @Execute
+    public void closePart(@Named(IServiceConstants.ACTIVE_PART) MPart activePart) {
+        partService.hidePart(activePart);
+    }
+}