Skip to main content
summaryrefslogtreecommitdiffstats
blob: c685be4dcd2a5969954e7517a9af2a4e53b7c691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";
}

Back to the top