blob: a7877e94e91eb25e147ac05b66069a714dd32050 [file] [log] [blame]
/**********************************************************************
* Copyright 2019 Stephan Herrmann
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Stephan Herrmann - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otredyn.util;
public interface SMAPConstants {
public final static int STEP_OVER_LINENUMBER = Short.MAX_VALUE *2; // = 65534
public final static int STEP_INTO_LINENUMBER = STEP_OVER_LINENUMBER - 1; // = 65533
}