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: fba0b86e754855c970cdb9366ab2ac0d6c5d5df9 (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
59
60
61
62
63
64
65
66
/*******************************************************************************
 * Copyright (c) 2004, 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
 *******************************************************************************/
package org.eclipse.wst.html.core.internal.contentmodel;



import org.eclipse.wst.xml.core.internal.contentmodel.CMDataType;

/**
 * HTML extension for data types.
 */
public interface HTMLCMDataType extends CMDataType {

	/** Boolean; it should be defined in CMDataType. */
	public static final String BOOLEAN = "BOOLEAN"; //$NON-NLS-1$
	public static final String COLOR = "COLOR"; //$NON-NLS-1$
	public static final String EVENT = "EVENT"; //$NON-NLS-1$
	public static final String IDREFS = "IDREFS"; //$NON-NLS-1$
	/** Name; it should be defined in CMDataType. */
	public static final String NAME = "NAME"; //$NON-NLS-1$
	// Following types are just aliases.
	/** %Character; == CDATA */
	public static final String CHARACTER = CMDataType.CDATA;
	/** %Charset; == CDATA */
	public static final String CHARSET = CMDataType.CDATA;
	/** %Charsets; == CDATA */
	public static final String CHARSETS = CMDataType.CDATA;
	/** %ContentType; == CDATA */
	public static final String CONTENT_TYPE = CMDataType.CDATA;
	/** %Coords; == CDATA */
	public static final String COORDS = CMDataType.CDATA;
	/** %Datetime; == CDATA */
	public static final String DATETIME = CMDataType.CDATA;
	/** %FrameTarget; == CDATA */
	public static final String FRAME_TARGET = CMDataType.CDATA;
	/** %LanguageCode; == NAME */
	public static final String LANGUAGE_CODE = NAME;
	/** %Length; == CDATA */
	public static final String LENGTH = CMDataType.CDATA;
	/** %LinkTypes; == CDATA */
	public static final String LINK_TYPES = CMDataType.CDATA;
	/** %LIStyle; == CDATA */
	public static final String LI_STYLE = CMDataType.CDATA;
	/** %MediaDesc; == CDATA */
	public static final String MEDIA_DESC = CMDataType.CDATA;
	/** %MultiLength; == CDATA */
	public static final String MULTI_LENGTH = CMDataType.CDATA;
	/** %OLStyle; == CDATA */
	public static final String OL_STYLE = CMDataType.CDATA;
	/** %Pixles; == CDATA */
	public static final String PIXELS = CMDataType.CDATA;
	/** %Script; == EVENT */
	public static final String SCRIPT = EVENT;
	/** %StyleSheet; == EVENT */
	public static final String STYLE_SHEET = CMDataType.CDATA;
	/** %Text; == CDATA */
	public static final String TEXT = CMDataType.CDATA;
}

Back to the top