Skip to main content
summaryrefslogtreecommitdiffstats
blob: 468315bc9b2aacd4d2d498641444c421385dc7cd (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
50
51
52
53
54
55
56
57
58
/*******************************************************************************
 * 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
 *******************************************************************************/
package org.eclipse.wst.css.core.internal.metamodelimpl;

interface ProfileKeywords {

	final static String CSS_PROFILE = "css-profile"; //$NON-NLS-1$
	final static String PROFILE_IMPORT = "profile-import"; //$NON-NLS-1$
	final static String STYLESHEET_DEF = "stylesheet-def"; //$NON-NLS-1$
	final static String CHARSET_RULE = "charset-rule"; //$NON-NLS-1$
	final static String IMPORT_RULE = "import-rule"; //$NON-NLS-1$
	final static String PAGE_RULE = "page-rule"; //$NON-NLS-1$
	final static String MEDIA_RULE = "media-rule"; //$NON-NLS-1$
	final static String FONTFACE_RULE = "fontface-rule"; //$NON-NLS-1$
	final static String STYLE_RULE = "style-rule"; //$NON-NLS-1$
	final static String CHARSET_RULE_DEF = "charset-rule-def"; //$NON-NLS-1$
	final static String IMPORT_RULE_DEF = "import-rule-def"; //$NON-NLS-1$
	final static String PAGE_RULE_DEF = "page-rule-def"; //$NON-NLS-1$
	final static String MEDIA_RULE_DEF = "media-rule-def"; //$NON-NLS-1$
	final static String FONTFACE_RULE_DEF = "fontface-rule-def"; //$NON-NLS-1$
	final static String STYLE_RULE_DEF = "style-rule-def"; //$NON-NLS-1$
	final static String FUNCTION_DEF = "function-def"; //$NON-NLS-1$
	final static String FUNCTION_VALUE = "function-value"; //$NON-NLS-1$
	final static String KEYWORD_DEF = "keyword-def"; //$NON-NLS-1$
	final static String KEYWORD_VALUE = "keyword-value"; //$NON-NLS-1$
	final static String DESCRIPTION = "description"; //$NON-NLS-1$
	final static String NUMBER_DEF = "number-def"; //$NON-NLS-1$
	final static String UNIT = "unit"; //$NON-NLS-1$
	final static String UNIT_DEF = "unit-def"; //$NON-NLS-1$
	final static String UNIT_VALUE = "unit-value"; //$NON-NLS-1$
	final static String CONTAINER_DEF = "container-def"; //$NON-NLS-1$
	final static String CATEGORY_DEF = "category-def"; //$NON-NLS-1$
	final static String CAPTION = "caption"; //$NON-NLS-1$
	final static String PROPERTY_DEF = "property-def"; //$NON-NLS-1$
	final static String DESCRIPTOR_DEF = "descriptor-def"; //$NON-NLS-1$
	final static String SELECTOR_EXPRESSION = "selector-expression"; //$NON-NLS-1$
	final static String PSEUDO_CLASS = "pseudo-class"; //$NON-NLS-1$
	final static String PSEUDO_ELEMENT = "pseudo-element"; //$NON-NLS-1$
	final static String PSEUDO_CLASS_DEF = "pseudo-class-def"; //$NON-NLS-1$
	final static String PSEUDO_ELEMENT_DEF = "pseudo-element-def"; //$NON-NLS-1$
	final static String SELECTOR_VALUE = "selector-value"; //$NON-NLS-1$
	final static String NUMBER = "number"; //$NON-NLS-1$
	final static String KEYWORD = "keyword"; //$NON-NLS-1$
	final static String FUNCTION = "function"; //$NON-NLS-1$
	final static String CONTAINER = "container"; //$NON-NLS-1$
	final static String STRING = "string"; //$NON-NLS-1$
	final static String SEPARATOR = "separator"; //$NON-NLS-1$
	final static String PROPERTY = "property"; //$NON-NLS-1$
	final static String DESCRIPTOR = "descriptor"; //$NON-NLS-1$
}

Back to the top