Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8a52c4bcc09b10bf66d6e0f05017f7fcaf22b56b (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
/*****************************************************************************
 * Copyright (c) 2017 CEA LIST and others.
 *
 * 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.sequence.util;

/**
 * @author Celine JANSSENS
 *
 */
public interface SequenceDiagramConstants {

	/** Threshold of Y axis to consider a Message as Horizontal */
	public static final int HORIZONTAL_MESSAGE_MAX_Y_DELTA = 65;

	/** Threshold of Y axis to consider a Message as Horizontal in the precision Mode (Shift key ) */
	public static final int HORIZONTAL_MESSAGE_PRECISION_Y_DELTA = 10;



}

Back to the top