Javadoc fix for QName(String,String,String). End tags for code were missing.

<code>QName<code> --> <code>QName</code>

This caused the Javadoc for the methods following this constructor to be
formatted entirely in the "code" format.


git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226212 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mrglavas 2005-06-03 21:58:15 +00:00
parent 86e0999b73
commit dc53decaec

View File

@ -1,5 +1,5 @@
/*
* Copyright 2003-2004 The Apache Software Foundation.
* Copyright 2003-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -157,9 +157,9 @@ public class QName implements Serializable {
* as specified in <a href="http://www.w3.org/TR/REC-xml-names/">Namespaces
* in XML</a>.</p>
*
* @param namespaceURI Namespace URI of the <code>QName<code>
* @param localPart local part of the <code>QName<code>
* @param prefix prefix of the <code>QName<code>
* @param namespaceURI Namespace URI of the <code>QName</code>
* @param localPart local part of the <code>QName</code>
* @param prefix prefix of the <code>QName</code>
*/
public QName(String namespaceURI, String localPart, String prefix) {