blob: 10847db83c069c93efe536b9bbe5d5d784ab3cd8 [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 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.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$
}