]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/tests/InDevelopmentModeTest.java
Copy URI context menu action to Model Browser for development mode
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / tests / InDevelopmentModeTest.java
1 /*******************************************************************************
2  * Copyright (c) 2017 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  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.tests;
13
14 import org.eclipse.core.runtime.Platform;
15 import org.simantics.db.ReadGraph;
16 import org.simantics.db.exception.DatabaseException;
17
18 /**
19  * @author Tuukka Lehtonen
20  * @since 1.30.0
21  */
22 public enum InDevelopmentModeTest implements Test {
23     INSTANCE;
24
25     public static InDevelopmentModeTest get() {
26         return INSTANCE;
27     }
28
29     @Override
30     public boolean isCompatible(Class<?> contentType) {
31         return true;
32     }
33
34     @Override
35     public boolean test(ReadGraph graph, Object content) throws DatabaseException {
36         return Platform.inDevelopmentMode();
37     }
38
39 }