1 /*******************************************************************************
\r
2 * Copyright (c) 2007- VTT Technical Research Centre of Finland.
\r
3 * All rights reserved. This program and the accompanying materials
\r
4 * are made available under the terms of the Eclipse Public License v1.0
\r
5 * which accompanies this distribution, and is available at
\r
6 * http://www.eclipse.org/legal/epl-v10.html
\r
9 * VTT Technical Research Centre of Finland - initial API and implementation
\r
10 *******************************************************************************/
\r
11 package org.simantics.processeditor.handlers;
\r
13 import org.simantics.db.Graph;
\r
14 import org.simantics.db.Resource;
\r
15 import org.simantics.processeditor.Activator;
\r
16 import org.simantics.processeditor.ProcessResource;
\r
17 import org.simantics.proconf.ui.workbench.ResourceEditorInput;
\r
18 import org.simantics.proconf.ui.workbench.editor.SimpleEditorAdapter;
\r
19 import org.simantics.utils.ui.BundleUtils;
\r
20 import org.simantics.utils.ui.workbench.WorkbenchUtils;
\r
24 * EditorAdapter for PipeLineComponentEditor
\r
26 * @author Marko Luukkainen <Marko.Luukkainen@vtt.fi>
\r
29 public class PipelineComponentEditorAdapter extends SimpleEditorAdapter {
\r
30 public PipelineComponentEditorAdapter() {
\r
31 super("Component Editor",
\r
32 BundleUtils.getImageDescriptorFromPlugin(Activator.PLUGIN_ID, "icons/Component.png"),
\r
37 public boolean canHandle(Graph g, Resource r) {
\r
38 if(ProcessResource.plant3Dresource == null) return false;
\r
39 if(ProcessResource.plant3Dresource.Plant == null) return false;
\r
40 if(!g.isInstanceOf(r, ProcessResource.plant3Dresource.PipelineComponent)) {
\r
41 if (g.isInstanceOf(r, ProcessResource.plant3Dresource.Nozzle))
\r
45 if(g.isInstanceOf(r, ProcessResource.plant3Dresource.CodedComponent)) return false;
\r
51 public void openEditor(Resource r) throws Exception {
\r
52 WorkbenchUtils.openEditor("org.simantics.proconf.processeditor.componenteditor", new ResourceEditorInput("org.simantics.proconf.processeditor.componenteditor",r));
\r