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.

aboutsummaryrefslogtreecommitdiffstats
blob: 6a484dc6a7a502d56b6037c3aeecd84670e5b17b (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Copyright (c) 2004 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
 *******************************************************************************/
/*nlsXXX*/
package org.eclipse.jst.jsp.core.internal.contentmodel.tld.provisional;

public interface JSP11TLDNames {

	String TAGLIB = "taglib"; //$NON-NLS-1$

	String CONTENT_JSP = "JSP"; //$NON-NLS-1$
	String CONTENT_EMPTY = "empty"; //$NON-NLS-1$
	String CONTENT_TAGDEPENDENT = "tagdependent"; //$NON-NLS-1$

	String TAG = "tag"; //$NON-NLS-1$
	String JSPVERSION = "jspversion"; //$NON-NLS-1$
	String TLIBVERSION = "tlibversion"; //$NON-NLS-1$
	String SHORTNAME = "shortname"; //$NON-NLS-1$
	String URI = "uri"; //$NON-NLS-1$
	String URN = "urn"; //$NON-NLS-1$
	String INFO = "info"; //$NON-NLS-1$

	String NAME = "name"; //$NON-NLS-1$
	String TEICLASS = "teiclass"; //$NON-NLS-1$
	String TAGCLASS = "tagclass"; //$NON-NLS-1$
	String BODYCONTENT = "bodycontent"; //$NON-NLS-1$
	String ATTRIBUTE = "attribute"; //$NON-NLS-1$

	String ID = "id"; //$NON-NLS-1$
	String REQUIRED = "required"; //$NON-NLS-1$
	String RTEXPRVALUE = "rtexprvalue"; //$NON-NLS-1$

	String PREFIX = "prefix"; //$NON-NLS-1$

	String INCLUDE = "include"; //$NON-NLS-1$
	String FILE = "file"; //$NON-NLS-1$

	String TRUE = "true"; //$NON-NLS-1$
	String FALSE = "false"; //$NON-NLS-1$
	String YES = "yes"; //$NON-NLS-1$
	String NO = "no"; //$NON-NLS-1$
}

Back to the top