1 /*******************************************************************************
2  * Copyright (c) 2016, 2019 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.jdt.internal.corext.dom;
15 
16 import org.eclipse.jdt.core.dom.AST;
17 
18 public interface IASTSharedValues {
19 
20 	/**
21 	 * This value is subject to change with every release. JDT-UI-internal code typically supports
22 	 * the latest available {@link AST#apiLevel() AST level} exclusively.
23 	 */
24 	public static final int SHARED_AST_LEVEL= AST.JLS14;
25 
26 	public static final boolean SHARED_AST_STATEMENT_RECOVERY= true;
27 
28 	public static final boolean SHARED_BINDING_RECOVERY= true;
29 }
30