/***************************************************************************** * 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 C�line JANSSENS * */ public interface SequenceDiagramConstants { /** Threshold of Y axis to consider a Message as Horizontal */ public final static int HORIZONTAL_MESSAGE_MAX_Y_DELTA = 65; /** Threshold of Y axis to consider a Message as Horizontal in the precision Mode (Shift key ) */ public final static int HORIZONTAL_MESSAGE_PRECISION_Y_DELTA = 10; }