Author: veithen
Date: Thu Feb 3 21:22:54 2011
New Revision: 1066978
URL: http://svn.apache.org/viewvc?rev=1066978&view=rev
Log:
Fixed a couple of Javadoc warnings.
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMFactory.java
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMMetaFactory.java
webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/document/TestSerializeAndConsume.java
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMFactory.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMFactory.java?rev=1066978&r1=1066977&r2=1066978&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMFactory.java
(original)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMFactory.java
Thu Feb 3 21:22:54 2011
@@ -58,7 +58,7 @@ public interface OMFactory {
* the parent to which the newly created element will be added;
this may be
* <code>null</code>, in which case the behavior of the method
is the same as
* {@link #createOMElement(String, OMNamespace)}
- * @return
+ * @return the newly created element
* @throws OMException
*/
OMElement createOMElement(String localName, OMNamespace ns, OMContainer
parent)
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMMetaFactory.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMMetaFactory.java?rev=1066978&r1=1066977&r2=1066978&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMMetaFactory.java
(original)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMMetaFactory.java
Thu Feb 3 21:22:54 2011
@@ -100,14 +100,11 @@ public interface OMMetaFactory {
* implementation will select the appropriate {@link SOAPFactory} based on
the namespace URI of
* the SOAP envelope.
*
- * @param configuration
- * the parser configuration to use; for security reasons, this
should in general be
- * {@link StAXParserConfiguration#SOAP}
* @param parser
* the stream reader to read the SOAP message from
* @return the builder
*/
- OMXMLParserWrapper createStAXSOAPModelBuilder(XMLStreamReader reader);
+ OMXMLParserWrapper createStAXSOAPModelBuilder(XMLStreamReader parser);
/**
* Create an object model builder for SOAP that reads a message from the
provided input source.
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/document/TestSerializeAndConsume.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/document/TestSerializeAndConsume.java?rev=1066978&r1=1066977&r2=1066978&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/document/TestSerializeAndConsume.java
(original)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/document/TestSerializeAndConsume.java
Thu Feb 3 21:22:54 2011
@@ -28,8 +28,9 @@ import org.apache.axiom.ts.AxiomTestCase
import org.apache.commons.io.output.NullOutputStream;
/**
- * Tests the behavior of {@link
OMDocument#serializeAndConsume(java.io.OutputStream))}. This is a
- * regression test for <a
href="https://issues.apache.org/jira/browse/AXIOM-24">AXIOM-24</a>.
+ * Tests the behavior of {@link
org.apache.axiom.om.OMContainer#serializeAndConsume(java.io.OutputStream)}
+ * when invoked on an {@link OMDocument} instance. This is a regression test
for
+ * <a href="https://issues.apache.org/jira/browse/AXIOM-24">AXIOM-24</a>.
*/
public class TestSerializeAndConsume extends AxiomTestCase {
public TestSerializeAndConsume(OMMetaFactory metaFactory) {