]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/OpenSheetAdapter.java
Configurable connection crossing styles
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / diagramEditor / OpenSheetAdapter.java
index 0a4ca49b4f689aebb77a2b919382541a4ffc9588..b7c0584e213be4f2cb8f24f629f5815b9c54cf86 100644 (file)
@@ -1,76 +1,76 @@
-/*******************************************************************************\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.diagramEditor;\r
-\r
-import org.eclipse.ui.PartInitException;\r
-import org.eclipse.ui.PlatformUI;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.request.PossibleIndexRoot;\r
-import org.simantics.db.common.request.ReadRequest;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.variable.RVI;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.layer0.variable.Variables;\r
-import org.simantics.modeling.ui.Activator;\r
-import org.simantics.spreadsheet.resource.SpreadsheetResource;\r
-import org.simantics.ui.SimanticsUI;\r
-import org.simantics.ui.workbench.ResourceEditorInput2;\r
-import org.simantics.ui.workbench.editor.AbstractResourceEditorAdapter;\r
-import org.simantics.utils.ui.workbench.WorkbenchUtils;\r
-import org.slf4j.Logger;\r
-import org.slf4j.LoggerFactory;\r
-\r
-public class OpenSheetAdapter extends AbstractResourceEditorAdapter {\r
-    private static final Logger LOGGER = LoggerFactory.getLogger(OpenSheetAdapter.class);\r
-\r
-    private static final String EDITOR_ID = "org.simantics.spreadsheet.ui.editor2";\r
-\r
-    public OpenSheetAdapter() {\r
-        super("Spreadsheet Editor", Activator.COMPOSITE_ICON);\r
-    }\r
-\r
-    protected String getEditorId() {\r
-        return EDITOR_ID;\r
-    }\r
-\r
-    @Override\r
-    public boolean canHandle(ReadGraph g, Resource r) throws DatabaseException {\r
-        return g.isInstanceOf(r, SpreadsheetResource.getInstance(g).Book);\r
-    }\r
-\r
-    @Override\r
-    public void openEditor(final Resource r) throws Exception {\r
-        SimanticsUI.getSession().asyncRequest(new ReadRequest() {\r
-            @Override\r
-            public void run(ReadGraph g) throws DatabaseException {\r
-\r
-                Variable variable = Variables.getVariable(g, r);\r
-                final Resource model = g.syncRequest(new PossibleIndexRoot(r));\r
-                final RVI rvi = variable.getPossibleRVI(g);\r
-                \r
-                PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {\r
-                    @Override\r
-                    public void run() {\r
-                        try {\r
-                            String editorId = getEditorId();\r
-                            WorkbenchUtils.openEditor(editorId, new ResourceEditorInput2(editorId, r, model, rvi));\r
-                        } catch (PartInitException e) {\r
-                               LOGGER.error("Failed to open the spreadsheet editor.", e);\r
-                        }\r
-                    }\r
-                });\r
-            }\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.diagramEditor;
+
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.simantics.Simantics;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.request.PossibleIndexRoot;
+import org.simantics.db.common.request.ReadRequest;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.RVI;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.layer0.variable.Variables;
+import org.simantics.modeling.ui.Activator;
+import org.simantics.spreadsheet.resource.SpreadsheetResource;
+import org.simantics.ui.workbench.ResourceEditorInput2;
+import org.simantics.ui.workbench.editor.AbstractResourceEditorAdapter;
+import org.simantics.utils.ui.workbench.WorkbenchUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class OpenSheetAdapter extends AbstractResourceEditorAdapter {
+    private static final Logger LOGGER = LoggerFactory.getLogger(OpenSheetAdapter.class);
+
+    private static final String EDITOR_ID = "org.simantics.spreadsheet.ui.editor2"; //$NON-NLS-1$
+
+    public OpenSheetAdapter() {
+        super(Messages.OpenSheetAdapter_SpreadsheetEditor, Activator.COMPOSITE_ICON);
+    }
+
+    protected String getEditorId() {
+        return EDITOR_ID;
+    }
+
+    @Override
+    public boolean canHandle(ReadGraph g, Resource r) throws DatabaseException {
+        return g.isInstanceOf(r, SpreadsheetResource.getInstance(g).Book);
+    }
+
+    @Override
+    public void openEditor(final Resource r) throws Exception {
+        Simantics.getSession().asyncRequest(new ReadRequest() {
+            @Override
+            public void run(ReadGraph g) throws DatabaseException {
+
+                Variable variable = Variables.getVariable(g, r);
+                final Resource model = g.syncRequest(new PossibleIndexRoot(r));
+                final RVI rvi = variable.getPossibleRVI(g);
+                
+                PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
+                    @Override
+                    public void run() {
+                        try {
+                            String editorId = getEditorId();
+                            WorkbenchUtils.openEditor(editorId, new ResourceEditorInput2(editorId, r, model, rvi));
+                        } catch (PartInitException e) {
+                               LOGGER.error("Failed to open the spreadsheet editor.", e); //$NON-NLS-1$
+                        }
+                    }
+                });
+            }
+        });
+    }
+
+}