/[classpath]/classpath/javax/xml/namespace/QName.java
ViewVC logotype

Diff of /classpath/javax/xml/namespace/QName.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by mark, Thu Aug 25 12:59:42 2005 UTC revision 1.7 by dog, Mon Sep 5 12:37:38 2005 UTC
# Line 80  public class QName Line 80  public class QName
80      this.prefix = prefix;      this.prefix = prefix;
81            
82      StringBuffer buf = new StringBuffer();      StringBuffer buf = new StringBuffer();
83      if (namespaceURI != null && namespaceURI.length() > 0)      if (namespaceURI.length() > 0)
84        {        {
85          buf.append('{');          buf.append('{');
86          buf.append(namespaceURI);          buf.append(namespaceURI);
87          buf.append('}');          buf.append('}');
88        }        }
89      if (prefix != null && prefix.length() > 0)      if (prefix.length() > 0)
90        {        {
91          buf.append(prefix);          buf.append(prefix);
92          buf.append(':');          buf.append(':');

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26