Author: jkaputin
Date: Wed Jan 31 10:30:07 2007
New Revision: 501937
URL: http://svn.apache.org/viewvc?view=rev&rev=501937
Log:
Modified Javadoc comments to eliminate Javadoc
errors and warnings.
Modified:
incubator/woden/trunk/java/src/javax/xml/namespace/QName.java
incubator/woden/trunk/java/src/org/apache/woden/WSDLSource.java
incubator/woden/trunk/java/src/org/apache/woden/internal/wsdl20/extensions/ComponentExtensionsImpl.java
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameListOrTokenAnyAttrImpl.java
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameOrTokenAnyAttrImpl.java
Modified: incubator/woden/trunk/java/src/javax/xml/namespace/QName.java
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/javax/xml/namespace/QName.java?view=diff&rev=501937&r1=501936&r2=501937
==============================================================================
--- incubator/woden/trunk/java/src/javax/xml/namespace/QName.java (original)
+++ incubator/woden/trunk/java/src/javax/xml/namespace/QName.java Wed Jan 31
10:30:07 2007
@@ -26,8 +26,9 @@
* Schema Part2: Datatypes specification</a>.
* <p>
* The WSDL4J version of QName has been copied and updated for Apache Woden to
- * match the QName class defined for Java 5.0.
- * @see
"http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/namespace/QName.html".
+ * match the Javadoc of the QName class defined for Java 5.0 at:
+ * <br />
+ * http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/namespace/QName.html
* <p>
* The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b>
* and a <b>prefix</b>.
@@ -48,8 +49,8 @@
* <p>
* The <code>valueOf</code> method behaves like the constructors in that
* a null value will throw an IllegalArgumentException, but an empty string ""
- * value treated as a localPart which is allowed to retain compatibility with
- * v1.0 QName.
+ * value will be treated as a localPart rather than an IllegalArgumentException
+ * to retain compatibility with v1.0 QName.
* <p>
* To support the deserialization of objects that were serialized with an
* older version of QName (i.e. without a 'prefix' field), the
@@ -58,8 +59,8 @@
* empty string.
*
* @author axis-dev
- * @author Matthew J. Duftler ([EMAIL PROTECTED])
- * @author [EMAIL PROTECTED]
+ * @author <br/>Matthew J. Duftler ([EMAIL PROTECTED])
+ * @author <br/>John Kaputin ([EMAIL PROTECTED])
*/
public class QName implements Serializable
{
Modified: incubator/woden/trunk/java/src/org/apache/woden/WSDLSource.java
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/org/apache/woden/WSDLSource.java?view=diff&rev=501937&r1=501936&r2=501937
==============================================================================
--- incubator/woden/trunk/java/src/org/apache/woden/WSDLSource.java (original)
+++ incubator/woden/trunk/java/src/org/apache/woden/WSDLSource.java Wed Jan 31
10:30:07 2007
@@ -67,7 +67,7 @@
/**
* Returns the implementation specific object representing the WSDL source
- * (e.g. a DOM Element or Document or an Axiom OMElement). The caller
should
+ * (for example, a DOM Element or Document or an Axiom OMElement). The
caller should
* cast this object to the appropriate type to use its interface.
*
* @return the Object representing the WSDL source
Modified:
incubator/woden/trunk/java/src/org/apache/woden/internal/wsdl20/extensions/ComponentExtensionsImpl.java
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/org/apache/woden/internal/wsdl20/extensions/ComponentExtensionsImpl.java?view=diff&rev=501937&r1=501936&r2=501937
==============================================================================
---
incubator/woden/trunk/java/src/org/apache/woden/internal/wsdl20/extensions/ComponentExtensionsImpl.java
(original)
+++
incubator/woden/trunk/java/src/org/apache/woden/internal/wsdl20/extensions/ComponentExtensionsImpl.java
Wed Jan 31 10:30:07 2007
@@ -23,8 +23,8 @@
import org.apache.woden.wsdl20.xml.WSDLElement;
/**
- * This class represents group of WSDL extension properties (i.e. extension
- * elements or attributes) related by their non-WSDL namespace.
+ * This class represents group of WSDL extension properties related to a
particular binding type.
+ * These extension properties may be derived from extension elements and
attributes in a WSDL infoset.
* The only behaviour of this class is to return the namespace.
* Implementations may extend this class to define behaviour specific to
* their required extensions.
Modified:
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameListOrTokenAnyAttrImpl.java
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameListOrTokenAnyAttrImpl.java?view=diff&rev=501937&r1=501936&r2=501937
==============================================================================
---
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameListOrTokenAnyAttrImpl.java
(original)
+++
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameListOrTokenAnyAttrImpl.java
Wed Jan 31 10:30:07 2007
@@ -31,8 +31,8 @@
/**
* This class represents XML attribute information items of type
- * "Union of list of QName or xs:token #any"
- * (e.g. the wsoap:subcodes extension attribute of binding fault).
+ * <code>Union of list of QName or xs:token #any</code>.
+ * For example, the wsoap:subcodes extension attribute of binding fault.
*
* @author [EMAIL PROTECTED]
*/
Modified:
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameOrTokenAnyAttrImpl.java
URL:
http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameOrTokenAnyAttrImpl.java?view=diff&rev=501937&r1=501936&r2=501937
==============================================================================
---
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameOrTokenAnyAttrImpl.java
(original)
+++
incubator/woden/trunk/java/src/org/apache/woden/internal/xml/QNameOrTokenAnyAttrImpl.java
Wed Jan 31 10:30:07 2007
@@ -26,8 +26,8 @@
/**
* This class represents XML attribute information items of type
- * "Union of QName or xs:token #any"
- * (e.g. the wsoap:code extension attribute of binding fault).
+ * <code>Union of QName or xs:token #any</code>.
+ * For example, the wsoap:code extension attribute of binding fault.
*
* @author [EMAIL PROTECTED]
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]