blob: 08fa5b9a0b4007684c9c037a08a5d2e3d5fec05e [file] [log] [blame]
nitindb0f7b262004-11-23 19:12:23 +00001/*******************************************************************************
2 * Copyright (c) 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11package org.eclipse.jst.jsp.core.internal.contenttype;
12
david_williams282b8f42005-02-14 07:00:56 +000013import org.eclipse.wst.xml.core.internal.contenttype.XMLHeadTokenizerConstants;
nitindb0f7b262004-11-23 19:12:23 +000014
15public interface JSPHeadTokenizerConstants extends XMLHeadTokenizerConstants {
16 String PageDirectiveStart = "PageDirectiveStart"; //$NON-NLS-1$
17 String PageDirectiveEnd = "PageDirectiveEnd"; //$NON-NLS-1$
18 String PageLanguage = "PageLanguage"; //$NON-NLS-1$
19 String PageEncoding = "PageEncoding"; //$NON-NLS-1$
20 String PageContentType = "PageContentType"; //$NON-NLS-1$
21}