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: 68bdb5e870ee00d402d8997ec8f2f47402239098 (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
/*******************************************************************************
 * Copyright (c) 2001, 2005 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
 *     Jens Lukowski/Innoopract - initial renaming/restructuring
 *     
 *******************************************************************************/
package org.eclipse.wst.dtd.ui.internal.style;

/**
 * Contains the symbolic name of styles used by LineStyleProvider,
 * ColorManager, and any others who may be interested
 */
public interface IStyleConstantsDTD {

	public static final String DTD_COMMENT = "dtdComment"; //$NON-NLS-1$

	// Data are variables
	public static final String DTD_DATA = "dtdData"; //$NON-NLS-1$
	public static final String DTD_DEFAULT = "dtdDefault"; //$NON-NLS-1$

	// keywords are constants like IMPLIED or PCDATA
	public static final String DTD_KEYWORD = "dtdKeyword"; //$NON-NLS-1$

	// strings are anything in quotes
	public static final String DTD_STRING = "dtdString"; //$NON-NLS-1$

	// All the remaining symbols
	public static final String DTD_SYMBOL = "dtdSymbol"; //$NON-NLS-1$

	// tags are '<', '!', or '>'
	public static final String DTD_TAG = "dtdTag"; //$NON-NLS-1$

	// tagnames are like ELEMENT, ATTLIST, etc.
	public static final String DTD_TAGNAME = "dtdTagName"; //$NON-NLS-1$
}

Back to the top