Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 9e1b16e223ece2f4d3feacda8d4038d57277041b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     
 *******************************************************************************/
package org.eclipse.jst.jsp.css.core.internal.parserz;

import org.eclipse.wst.css.core.internal.parserz.CSSRegionContexts;

public interface JSPedCSSRegionContexts extends CSSRegionContexts {	
	public static final String CSS_JSP_EXP = "CSS_JSP_EXP"; //$NON-NLS-1$
	public static final String CSS_JSP_EL = CSSRegionContexts.CSS_FOREIGN_ELEMENT; //$NON-NLS-1$
	public static final String CSS_JSP_SCRIPTLET = "CSS_JSP_SCRIPTLET"; //$NON-NLS-1$
	public static final String CSS_JSP_DIRECTIVE = "CSS_JSP_DIRECTIVE"; //$NON-NLS-1$
	public static final String CSS_JSP_DECL = "CSS_JSP_DECL"; //$NON-NLS-1$
	public static final String CSS_JSP_END = "CSS_JSP_END"; //$NON-NLS-1$
	public static final String CSS_EL_END = "CSS_EL_END"; //$NON-NLS-1$
	public static final String CSS_JSP_COMMENT_END = "CSS_JSP_COMMENT_END"; //$NON-NLS-1$
	public static final String CSS_JSP_COMMENT = "CSS_JSP_COMMENT"; //$NON-NLS-1$
}

Back to the top