blob: 3c773491e53617f7d1ca5b35f7426a809850d92a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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.xml.core.internal.provisional;
/**
* XML Namespace constants
*
* @plannedfor 1.0
*/
public interface IXMLNamespace {
static final String XMLNS = "xmlns";//$NON-NLS-1$
static final String XMLNS_PREFIX = "xmlns:";//$NON-NLS-1$
static final String XMLNS_URI = "http://www.w3.org/2000/xmlns/";//$NON-NLS-1$
}