Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5267aab0b87fe5f8d77301968da629475c94b9fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*****************************************************************************
 * 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.component.custom.preferences;

import org.eclipse.uml2.uml.Property;



/**
 * Constants for {@link Property} preferences.
 * @since 3.0
 */
public interface IPapyrusPropertyPreferencesConstant {

	/** Preference id for {@link Property} display label. */
	public String LABEL_DISPLAY_PREFERENCE = "Property.label.display"; //$NON-NLS-1$

	/** Preference id for {@link Property} display label. */
	public String PREF_FONT = "Property.font"; //$NON-NLS-1$

	/** Preference id for {@link Property} display label. */
	public String PREF_FONT_COLOR = "Property.font.color"; //$NON-NLS-1$

	/** Preference id for {@link Property} display label. */
	public String PREF_LINE_COLOR = "Property.line.color"; //$NON-NLS-1$
}

Back to the top