]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/internal/GraphDebuggerEditorAdapter.java
Externalize strings in org.simantics.debug.ui
[simantics/platform.git] / bundles / org.simantics.debug.ui / src / org / simantics / debug / ui / internal / GraphDebuggerEditorAdapter.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.debug.ui.internal;
13
14 import org.eclipse.core.runtime.Platform;
15 import org.simantics.db.Resource;
16 import org.simantics.db.ReadGraph;
17 import org.simantics.debug.ui.GraphDebuggerEditor;
18 import org.simantics.ui.SimanticsUI;
19 import org.simantics.ui.workbench.ResourceEditorInput;
20 import org.simantics.ui.workbench.editor.AbstractResourceEditorAdapter;
21
22 /**
23  * @author Tuukka Lehtonen
24  */
25 public class GraphDebuggerEditorAdapter extends AbstractResourceEditorAdapter {
26
27     public GraphDebuggerEditorAdapter() {
28         super(Messages.GraphDebuggerEditorAdapter_GraphDebugger, SimanticsUI.getImageDescriptor("icons/etool16/bug.png")); //$NON-NLS-2$
29     }
30
31     @Override
32     public boolean canHandle(ReadGraph g, Resource r) {
33         return Platform.inDevelopmentMode();
34     }
35
36     @Override
37     public void openEditor(Resource r) throws Exception {
38         openEditorWithId(GraphDebuggerEditor.EDITOR_ID, new ResourceEditorInput(GraphDebuggerEditor.EDITOR_ID,r));
39     }
40     
41 }