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: c14086fb80cc25c72eecb1c5e1cae4a208118bb5 (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, 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
 *     Jens Lukowski/Innoopract - initial renaming/restructuring
 *     
 *******************************************************************************/
package org.eclipse.wst.xml.ui.internal.style;

/**
 * Contains the symbolic name of styles used by LineStyleProvider,
 * ColorManager, and any others who may be interested
 */
public interface IStyleConstantsXML {
	public static final String BACKGROUND = "background"; //$NON-NLS-1$
	public static final String CDATA_BORDER = "cdataBorder";//$NON-NLS-1$
	public static final String CDATA_TEXT = "cdataText";//$NON-NLS-1$
	public static final String COMMENT_BORDER = "commentBorder";//$NON-NLS-1$
	public static final String COMMENT_TEXT = "commentText";//$NON-NLS-1$
	public static final String DECL_BORDER = "declBoder";//$NON-NLS-1$
	public static final String DOCTYPE_EXTERNAL_ID = "doctypeExternalId";//$NON-NLS-1$
	public static final String DOCTYPE_EXTERNAL_ID_PUBREF = "doctypeExternalPubref";//$NON-NLS-1$
	public static final String DOCTYPE_EXTERNAL_ID_SYSREF = "doctypeExtrenalSysref";//$NON-NLS-1$
	public static final String DOCTYPE_NAME = "doctypeName";//$NON-NLS-1$

	public static final String FOREGROUND = "foreground"; //$NON-NLS-1$
	public static final String PI_BORDER = "piBorder";//$NON-NLS-1$
	public static final String PI_CONTENT = "piContent";//$NON-NLS-1$

	public static final String TAG_ATTRIBUTE_EQUALS = "tagAttributeEquals"; //$NON-NLS-1$
	public static final String TAG_ATTRIBUTE_NAME = "tagAttributeName";//$NON-NLS-1$
	public static final String TAG_ATTRIBUTE_VALUE = "tagAttributeValue";//$NON-NLS-1$
	public static final String TAG_BORDER = "tagBorder";//$NON-NLS-1$
	public static final String TAG_NAME = "tagName";//$NON-NLS-1$
	public static final String XML_CONTENT = "xmlContent";//$NON-NLS-1$
}

Back to the top