]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/ui/ToolPropertyTester.java
Fix NPE from flagTransform
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / ui / ToolPropertyTester.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.diagram.ui;
13
14 import org.eclipse.core.expressions.PropertyTester;
15 import org.eclipse.ui.IEditorPart;
16 import org.simantics.g2d.canvas.Hints;
17 import org.simantics.g2d.canvas.ICanvasContext;
18 import org.simantics.g2d.canvas.IToolMode;
19 import org.simantics.utils.datastructures.hints.IHintContext;
20
21 /**
22  * An Eclipse property tester for canvas editor tool mode.
23  * 
24  * @author Tuukka Lehtonen
25  */
26 public class ToolPropertyTester extends PropertyTester {
27
28     private static final String MODE = "mode";
29
30     @Override
31     public boolean test(Object receiver, final String property, final Object[] args, final Object expectedValue) {
32         if (!(receiver instanceof IEditorPart))
33             return false;
34         IEditorPart editor = (IEditorPart) receiver;
35
36         if (MODE.equals(property)) {
37             ICanvasContext ctx = (ICanvasContext) editor.getAdapter(ICanvasContext.class);
38             if (ctx == null)
39                 return false;
40
41             IHintContext hints = ctx.getDefaultHintContext();
42             IToolMode toolMode = hints.getHint(Hints.KEY_TOOL);
43             if (toolMode != null) {
44                 return toolMode.getId().equals(expectedValue);
45             }
46         }
47         return false;
48     }
49
50 }