1 /*2 * $Id: Namespace.java,v 1.1.1.1 2004/06/16 01:43:40 davidson1 Exp $3 *4 * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,5 * Santa Clara, California 95054, U.S.A. All rights reserved.6 */7 8 package org.jdesktop.jdnc.markup;9 10 /**11 * Useful namespace constants.12 *13 * <p><b>NOTE: Future versions of this class will be aligned with the type-safe14 * enumeration facility proposed in JSR 201.</b></p>15 *16 * @author Ramesh Gupta17 * @see <a HREF="http://jcp.org/en/jsr/detail?id=201">JSR 201</a>18 */19 public abstract class Namespace {20 /**21 * JDNC namespace22 */23 public static final String JDNC = "http://www.jdesktop.org/2004/05/jdnc";24 public static final String XML = "http://www.w3.org/XML/1998/namespace";25 26 private Namespace() {27 // can't be instantiated; can't be subclassed.28 }29 }30