]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics/src/org/simantics/ModelBrowserPreferences.java
Include acorn db in db.client feature and make it the default db driver
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / ModelBrowserPreferences.java
1 /*******************************************************************************\r
2  * Copyright (c) 2012 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  *     Semantum Oy - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics;\r
13 \r
14 import org.simantics.internal.Activator;\r
15 \r
16 /**\r
17  * @author Tuukka Lehtonen <tuukka.lehtonen@semantum.fi>\r
18  */\r
19 public class ModelBrowserPreferences {\r
20 \r
21     public static final String  P_NODE                       = Activator.PLUGIN_ID;\r
22 \r
23     /**\r
24      * Preference for defining the enabled state of virtual graph autosave.\r
25      */\r
26     public static final String  P_ONTOLOGY_VISIBILITY        = "ontology.visibility"; //$NON-NLS-1$\r
27 \r
28     public static final String     ONTOLOGY_VISIBILITY_SHARED = "shared";\r
29     public static final String     ONTOLOGY_VISIBILITY_ALL = "all";\r
30 \r
31     public static final String     DEFAULT_ONTOLOGY_VISIBILITY = ONTOLOGY_VISIBILITY_SHARED;\r
32     \r
33 }\r