Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 073fa95ee73282d9e3965d75bb1c992f737cf99e (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
/*****************************************************************************
 * 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.diagram.clazz.custom.preferences;

import org.eclipse.uml2.uml.Operation;

/**
 * Constants for {@link Operation} preferences.
 */
public interface IPapyrusOperationPreferencesConstant {

	/** preference id for operation display label */
	public String OPERATION_LABEL_DISPLAY_PREFERENCE = "Operation.label.display";

	/** preference id for operation display label */
	public String OPERATION_PREF_FONT = "Operation.font";

	/** preference id for operation display label */
	public String OPERATION_PREF_FONT_COLOR = "Operation.font.color";

	/** preference id for operation display label */
	public String OPERATION_PREF_LINE_COLOR = "Operation.line.color";
}

Back to the top