]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/processors/ImagerFactoryResolver.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / processors / ImagerFactoryResolver.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.browsing.ui.common.processors;\r
13 \r
14 import org.simantics.browsing.ui.BuiltinKeys;\r
15 import org.simantics.browsing.ui.NodeContext;\r
16 import org.simantics.browsing.ui.common.EvaluatorData;\r
17 import org.simantics.browsing.ui.common.EvaluatorData.Evaluator;\r
18 import org.simantics.browsing.ui.common.EvaluatorData.EvaluatorTree;\r
19 import org.simantics.browsing.ui.content.ImagerFactory;\r
20 import org.simantics.browsing.ui.content.LabelerFactory;\r
21 \r
22 /**\r
23  * A query processor for resolving available {@link LabelerFactory} instances\r
24  * for a {@link NodeContext}.\r
25  * \r
26  * <p>\r
27  * This implementation works completely based on the generic\r
28  * {@link AbstractFactoryResolverQueryProcessor} and an {@link EvaluatorData}\r
29  * which is used to guide the resolution. See\r
30  * {@link AbstractFactoryResolverQueryProcessor} for an explanation of the\r
31  * generic logic.\r
32  * </p>\r
33  * \r
34  * @author Tuukka Lehtonen\r
35  */\r
36 public class ImagerFactoryResolver extends AbstractFactoryResolverQueryProcessor<ImagerFactory> {\r
37 \r
38     public ImagerFactoryResolver(EvaluatorData data) {\r
39         super(data, BuiltinKeys.IMAGER_FACTORIES);\r
40     }\r
41 \r
42     @Override\r
43     protected EvaluatorTree<ImagerFactory> getEvaluatorTree(Evaluator evaluator) {\r
44         return evaluator.getImagerTree();\r
45     }\r
46 \r
47 }\r