/***************************************************************************** * 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; /** * This class contains various options related to sequence diagram debug * @since 3.0 */ public class LogOptions { /** * tracing option for general sequence diagram debug */ public static String SEQUENCE_DEBUG = "SequenceDebug"; //$NON-NLS-1$ /** * tracing option for sequence diagram grid debug */ public static String SEQUENCE_DEBUG_REFERENCEGRID = "SequenceDebugGrid"; //$NON-NLS-1$ /** * tracing option for sequence diagram util debug */ public static String SEQUENCE_DEBUG_UTIL = "SequenceDebugUtil"; //$NON-NLS-1$ }