src/share/classes/com/sun/xml/internal/messaging/saaj/soap/name/NameImpl.java

changeset 50
42dfec6871f6
parent 45
31822b475baa
child 78
860b95cc8d1d
equal deleted inserted replaced
46:a88ad84027a0 50:42dfec6871f6
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or 22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions. 23 * have any questions.
24 */ 24 */
25 /* 25 /*
26 * $Id: NameImpl.java,v 1.48 2006/01/27 12:49:38 vj135062 Exp $ 26 *
27 * $Revision: 1.48 $ 27 *
28 * $Date: 2006/01/27 12:49:38 $ 28 *
29 */ 29 */
30 30
31 31
32 package com.sun.xml.internal.messaging.saaj.soap.name; 32 package com.sun.xml.internal.messaging.saaj.soap.name;
33 33
61 protected String uri = ""; 61 protected String uri = "";
62 protected String localName = ""; 62 protected String localName = "";
63 protected String prefix = ""; 63 protected String prefix = "";
64 private String qualifiedName = null; 64 private String qualifiedName = null;
65 65
66 protected static Logger log = 66 protected static final Logger log =
67 Logger.getLogger(LogDomainConstants.NAMING_DOMAIN, 67 Logger.getLogger(LogDomainConstants.NAMING_DOMAIN,
68 "com.sun.xml.internal.messaging.saaj.soap.name.LocalStrings"); 68 "com.sun.xml.internal.messaging.saaj.soap.name.LocalStrings");
69 69
70 protected NameImpl(String name) { 70 protected NameImpl(String name) {
71 this.localName = name == null ? "" : name; 71 this.localName = name == null ? "" : name;

mercurial