blob: 0f9adfb60c7cd40dcfa68a0792cf45b290d55d78 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.eclipse.wst.xml.core.internal.provisional;
/**
* XML Namespace constants
*
* @plannedfor 1.0
*/
public interface IXMLNamespace {
String XMLNS = "xmlns";//$NON-NLS-1$
String XMLNS_PREFIX = "xmlns:";//$NON-NLS-1$
String XMLNS_URI = "http://www.w3.org/2000/xmlns/";//$NON-NLS-1$
String XML = "xml";//$NON-NLS-1$
String XML_PREFIX = "xml:";//$NON-NLS-1$
String XML_URI = "http://www.w3.org/XML/1998/namespace";//$NON-NLS-1$
}