]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics/src/org/simantics/ModelBrowserPreferences.java
SimanticsPlatform.startUp ensures updateness of installed feature groups
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / ModelBrowserPreferences.java
1 /*******************************************************************************
2  * Copyright (c) 2012 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;
13
14 import org.simantics.internal.Activator;
15
16 /**
17  * @author Tuukka Lehtonen <tuukka.lehtonen@semantum.fi>
18  */
19 public class ModelBrowserPreferences {
20
21     public static final String  P_NODE                       = Activator.PLUGIN_ID;
22
23     /**
24      * Preference for defining the enabled state of virtual graph autosave.
25      */
26     public static final String  P_ONTOLOGY_VISIBILITY        = "ontology.visibility"; //$NON-NLS-1$
27
28     public static final String     ONTOLOGY_VISIBILITY_SHARED = "shared";
29     public static final String     ONTOLOGY_VISIBILITY_ALL = "all";
30
31     public static final String     DEFAULT_ONTOLOGY_VISIBILITY = ONTOLOGY_VISIBILITY_SHARED;
32     
33 }