Skip to main content
summaryrefslogtreecommitdiffstats
blob: 68b8c5a01c6c8e1a9094823e1158401602916cee (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
/**
 * Copyright (c) 2014 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:
 *  CEA LIST - Initial API and implementation
 */
package org.eclipse.papyrus.uml.diagram.statemachine.custom.preferences;

/**
 * Constants for Transition preferences (use same constants as for CSS options)
 */
public class PreferenceConstants {
	/**
	 * integer: Maximum length of displayed bodies.
	 */
	public final static String BODY_CUT_LENGTH = CSSOptionsConstants.BODY_CUT_LENGTH;

	/**
	 * Boolean: if true, indicate presence of parameters (attributes) by adding (...) to call or signal event.
	 */
	public final static String INDICATE_PARAMETERS = CSSOptionsConstants.INDICATE_PARAMETERS;

	/**
	 * Boolean: if true, add a line-break to the transition label before the effect
	 */
	public final static String LINEBREAK_BEFORE_EFFECT = CSSOptionsConstants.LINEBREAK_BEFORE_EFFECT;
}

Back to the top