blob: 802da38c232831d52f436452f3bfc4460ea255bc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 IBM Corporation and others.
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.xpath.core;
/**
* XPath Processor preferences
* @author dcarver
* @since 1.1
*/
public class XPathProcessorPreferences {
public static final String XPATH_1_0_PROCESSOR = "XPATH1.0";
public static final String XPATH_2_0_PROCESSOR = "XPATH2.0";
public static final String XPATH_OTHER = "OTHER";
}