Skip to main content
summaryrefslogtreecommitdiffstats
blob: 97955229308de51e6c4425948c21d7069a65eed5 (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
/*******************************************************************************
 * 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.dtd.core.internal.provisional.contenttype;

/**
 * <p>
 * This class, with its one field, is a convenience to provide compile-time
 * safety when referring to the DTD contentType ID.
 * </p>
 * 
 * <p>
 * This class is not meant to be instantiated or subclassed.
 * </p>
 */

public final class ContentTypeIdForDTD {
	/**
	 * The value of the ContentTypeID_DTD id field will match what is
	 * specified in org.eclipse.wst.dtd.core/plugin.xml for the DTD content
	 * type.
	 * 
	 * This value is intentionally set through a default protected method so
	 * that it will not be inlined.
	 */
	public final static String ContentTypeID_DTD = getConstantString();

	private ContentTypeIdForDTD() {
		super();
	}

	/**
	 * @return the DTD Content Type Identifier ID as a String
	 */
	static String getConstantString() {
		return "org.eclipse.wst.dtd.core.dtdsource"; //$NON-NLS-1$
	}
}

Back to the top