]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser/handlers/RenameNodeHandler.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser / handlers / RenameNodeHandler.java
index 65011498c9612ba973b8285fa4aff4a63832fbb8..bc3735abb3052408aa2d9c541f8dc69e2023f0c1 100644 (file)
@@ -1,58 +1,58 @@
-/*******************************************************************************\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.modeling.ui.modelBrowser.handlers;\r
-\r
-import org.eclipse.core.commands.AbstractHandler;\r
-import org.eclipse.core.commands.ExecutionEvent;\r
-import org.eclipse.core.commands.ExecutionException;\r
-import org.eclipse.jface.action.IStatusLineManager;\r
-import org.eclipse.jface.viewers.ISelection;\r
-import org.eclipse.ui.IActionBars;\r
-import org.eclipse.ui.IWorkbenchPart;\r
-import org.eclipse.ui.handlers.HandlerUtil;\r
-import org.simantics.browsing.ui.GraphExplorer;\r
-import org.simantics.browsing.ui.NodeContext;\r
-import org.simantics.browsing.ui.common.ColumnKeys;\r
-import org.simantics.utils.ui.ISelectionUtils;\r
-import org.simantics.utils.ui.workbench.WorkbenchUtils;\r
-\r
-public class RenameNodeHandler extends AbstractHandler {\r
-\r
-    @Override\r
-    public Object execute(ExecutionEvent event) throws ExecutionException {\r
-        ISelection sel = HandlerUtil.getCurrentSelection(event);\r
-        NodeContext ctx = ISelectionUtils.filterSingleSelection(sel, NodeContext.class);\r
-        if (ctx == null)\r
-            return null;\r
-\r
-        IWorkbenchPart part = HandlerUtil.getActivePart(event);\r
-        if (part == null)\r
-            return null;\r
-\r
-        IActionBars bars = WorkbenchUtils.getActionBars(part);\r
-        IStatusLineManager status = bars.getStatusLineManager();\r
-\r
-        GraphExplorer graphExplorer = (GraphExplorer) part.getAdapter(GraphExplorer.class);\r
-        if (graphExplorer != null) {\r
-               String error = graphExplorer.startEditing(ctx, ColumnKeys.SINGLE); \r
-            if (error != null) {\r
-                status.setErrorMessage(error);\r
-            } else {\r
-                status.setErrorMessage(null);\r
-            }\r
-        }\r
-\r
-        return null;\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.modeling.ui.modelBrowser.handlers;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.jface.action.IStatusLineManager;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.ui.IActionBars;
+import org.eclipse.ui.IWorkbenchPart;
+import org.eclipse.ui.handlers.HandlerUtil;
+import org.simantics.browsing.ui.GraphExplorer;
+import org.simantics.browsing.ui.NodeContext;
+import org.simantics.browsing.ui.common.ColumnKeys;
+import org.simantics.utils.ui.ISelectionUtils;
+import org.simantics.utils.ui.workbench.WorkbenchUtils;
+
+public class RenameNodeHandler extends AbstractHandler {
+
+    @Override
+    public Object execute(ExecutionEvent event) throws ExecutionException {
+        ISelection sel = HandlerUtil.getCurrentSelection(event);
+        NodeContext ctx = ISelectionUtils.filterSingleSelection(sel, NodeContext.class);
+        if (ctx == null)
+            return null;
+
+        IWorkbenchPart part = HandlerUtil.getActivePart(event);
+        if (part == null)
+            return null;
+
+        IActionBars bars = WorkbenchUtils.getActionBars(part);
+        IStatusLineManager status = bars.getStatusLineManager();
+
+        GraphExplorer graphExplorer = (GraphExplorer) part.getAdapter(GraphExplorer.class);
+        if (graphExplorer != null) {
+               String error = graphExplorer.startEditing(ctx, ColumnKeys.SINGLE); 
+            if (error != null) {
+                status.setErrorMessage(error);
+            } else {
+                status.setErrorMessage(null);
+            }
+        }
+
+        return null;
+    }
+
+
+}