/***************************************************************************** * Copyright (c) 2009 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: * Remi Schnekenburger (CEA LIST) - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.uml.diagram.composite.custom.preferences; import org.eclipse.uml2.uml.CollaborationUse; /** * Constants for {@link CollaborationUse} preferences. */ public interface IPapyrusCollaborationUsePreferencesConstant { /** Preference id for {@link CollaborationUse} display label */ public String LABEL_DISPLAY_PREFERENCE = "CollaborationUse.label.display"; //$NON-NLS-1$ /** Preference id for {@link CollaborationUse} display label */ public String PREF_FONT = "CollaborationUse.font"; //$NON-NLS-1$ /** Preference id for {@link CollaborationUse} display label */ public String PREF_FONT_COLOR = "CollaborationUse.font.color"; //$NON-NLS-1$ /** Preference id for {@link CollaborationUse} display label */ public String PREF_LINE_COLOR = "CollaborationUse.line.color"; //$NON-NLS-1$ }