blob: ecd2c2b67cfe8b39ad457e01a1e74e11ea3705e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Standards for Technology in Automotive Retail and others.
* All rights reserved. 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:
* David Carver - initial API and implementation
*
*******************************************************************************/
package org.eclipse.wst.xsl.core.internal.regions;
public interface XPathRegionContext {
public static final String BLOCK_TEXT = "BLOCK_TEXT"; //$NON-NLS-1$
public static final String UNDEFINED = "UNDEFINED"; //$NON-NLS-1$
public static final String WHITE_SPACE = "WHITE_SPACE"; //$NON-NLS-1$
public static final String XPATH_CONTENT = "XPATH_CONTENT"; //$NON-NLS-1$
public static final String XPATH_SEPARATOR_DIV = "XPATH_SEPARATOR_DIV"; //$NON-NLS-1$
public static final String XPATH_FUNCTION_PARAMETERS_OPEN = "XPATH_FUNCTION_PARAMETERS_OPEN"; //$NON-NLS-1$
public static final String XPATH_FUNCTION_PARAMETERS_CLOSE = "XPATH_FUNCTION_PARAMETERS_CLOSE"; //$NON-NLS-1$
public static final String XPATH_FUNCTION_NAME = "XPATH_FUNCTION_NAME"; //$NON-NLS-1$
}