/***************************************************************************** * Copyright (c) 2010 CEA LIST. * * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr - Initial API and implementation */ package org.eclipse.papyrus.infra.gmfdiag.navigation.preference; /** * Constant to use for the management of navigation preference */ public interface INavigationPreferenceConstant { public String PAPYRUS_NAVIGATION_DOUBLECLICK_KIND = "PAPYRUS_NAVIGATION_DOUBLECLICK_KIND"; public String NO_NAVIGATION = "NO_NAVIGATION"; public String EXPLICIT_NAVIGATION = "EXPLICIT_NAVIGATION"; public String EXPLICIT_IMPLICIT_NAVIGATION = "EXPLICIT_IMPLICIT_NAVIGATION"; public String PAPYRUS_NAVIGATION_DECORATOR_VISIBILITY = "PAPYRUS_NAVIGATION_DECORATOR_VISIBILITY"; public String DISABLED = "DISABLED"; public String DISPLAY_ONLY = "DISPLAY_ONLY"; public String EVERYWHERE = "EVERYWHERE"; }