blob: 53e161227f0c5551f50df5be1313baca31f3e47f [file] [log] [blame]
kmoorec9c9e2b2011-02-06 02:07:28 +00001/*******************************************************************************
2 * Copyright (c) 2009, 2010 Oracle. All rights reserved.
3 * This program and the accompanying materials are made available under the
4 * terms of the Eclipse Public License v1.0, which accompanies this distribution
5 * and is available at http://www.eclipse.org/legal/epl-v10.html.
6 *
7 * Contributors:
8 * Oracle - initial API and implementation
9 ******************************************************************************/
10package org.eclipse.jpt.jpa.core.resource.xml;
11
12/**
13 * XML-related stuff.
14 *
15 * Provisional API: This interface is part of an interim API that is still
16 * under development and expected to change significantly before reaching
17 * stability. It is available at this early stage to solicit feedback from
18 * pioneering adopters on the understanding that any code that uses this API
19 * will almost certainly be broken (repeatedly) as the API evolves.
20 *
21 * @version 2.3
22 * @since 2.2
23 */
24@SuppressWarnings("nls")
25public interface XML
26{
27 String VERSION = "version";
28
29 String NAMESPACE = "xmlns";
30
31 String NAMESPACE_XSI = "xmlns:xsi";
32 String XSI_NAMESPACE_URL = "http://www.w3.org/2001/XMLSchema-instance";
33
34 String XSI_SCHEMA_LOCATION = "xsi:schemaLocation";
35}