]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/workbench/editor/EditorAdapterDescriptor.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / editor / EditorAdapterDescriptor.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.ui.workbench.editor;\r
13 \r
14 import java.util.Collection;\r
15 \r
16 public interface EditorAdapterDescriptor {\r
17 \r
18     /**\r
19      * @return the id of this editor adapter\r
20      */\r
21     String getId();\r
22 \r
23     /**\r
24      * @return <code>null</code> if no group id is defined\r
25      */\r
26     String getGroupId();\r
27 \r
28     /**\r
29      * @return the adapter itself\r
30      */\r
31     EditorAdapter getAdapter();\r
32 \r
33     /**\r
34      * @return\r
35      */\r
36     Collection<String> getInContexts();\r
37 \r
38     /**\r
39      * @param activeContextIds\r
40      * @return <code>true</code> if this \r
41      */\r
42     boolean isActive(Collection<?> activeContextIds);\r
43 \r
44 }