[Practicalxml-commits] SF.net SVN: practicalxml:[136] trunk/src/main/java/net/sf/practicalxml
Brought to you by:
kdgregory
|
From: Auto-Generated S. C. M. <pra...@li...> - 2009-09-16 22:05:36
|
Revision: 136
http://practicalxml.svn.sourceforge.net/practicalxml/?rev=136&view=rev
Author: kdgregory
Date: 2009-09-16 22:05:24 +0000 (Wed, 16 Sep 2009)
Log Message:
-----------
fix JavaDoc complaints
Modified Paths:
--------------
trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java
trunk/src/main/java/net/sf/practicalxml/XmlUtil.java
trunk/src/main/java/net/sf/practicalxml/xpath/AbstractFunction.java
Modified: trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java
===================================================================
--- trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java 2009-09-16 21:31:05 UTC (rev 135)
+++ trunk/src/main/java/net/sf/practicalxml/SchemaUtil.java 2009-09-16 22:05:24 UTC (rev 136)
@@ -68,7 +68,7 @@
* <p>
* The caller is responsible for ordering the sources so that imported
* schemas appear first. This method is unable to combine sources from
- * the same target namespace; see {@link #combineSchema combineSchema()}
+ * the same target namespace; see {@link #combineSchemas combineSchemas()}
* for explanation.
*
* @param sources The source schema documents. Note that these are
@@ -93,7 +93,7 @@
* <p>
* The caller is responsible for ordering the sources so that imported
* schemas appear first. This method is unable to combine sources from
- * the same target namespace; see {@link #combineSchema combineSchema()}
+ * the same target namespace; see {@link #combineSchemas combineSchemas()}
* for explanation.
*
* @param factory Used to create the schema object.
@@ -119,7 +119,7 @@
* <p>
* The caller is responsible for ordering the documents so that imported
* schemas appear first. This method is unable to combine sources from
- * the same target namespace; see {@link #combineSchema combineSchema()}
+ * the same target namespace; see {@link #combineSchemas combineSchemas()}
* for explanation.
*
* @param factory Used to create the schema object.
Modified: trunk/src/main/java/net/sf/practicalxml/XmlUtil.java
===================================================================
--- trunk/src/main/java/net/sf/practicalxml/XmlUtil.java 2009-09-16 21:31:05 UTC (rev 135)
+++ trunk/src/main/java/net/sf/practicalxml/XmlUtil.java 2009-09-16 22:05:24 UTC (rev 136)
@@ -91,7 +91,7 @@
* XML Schema for <code>dateTime</code> elements. Output is UTC time, and
* omits timezone specifier.
*
- * @see http://www.w3.org/TR/xmlschema-2/#dateTime
+ * @see <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">XML Schema</a>
*/
public static String formatXsdDatetime(Date date)
{
Modified: trunk/src/main/java/net/sf/practicalxml/xpath/AbstractFunction.java
===================================================================
--- trunk/src/main/java/net/sf/practicalxml/xpath/AbstractFunction.java 2009-09-16 21:31:05 UTC (rev 135)
+++ trunk/src/main/java/net/sf/practicalxml/xpath/AbstractFunction.java 2009-09-16 22:05:24 UTC (rev 136)
@@ -444,22 +444,6 @@
* Processes a <code>null</code> argument — it's unclear whether
* this can ever happen. The default implementation throws <code>
* IllegalArgumentException</code>.
-
-
- @Override
- public boolean equals(Object obj)
- {
- // FIXME - implement
- return super.equals(obj);
- }
-
-
- @Override
- public int hashCode()
- {
- // FIXME - implement
- return super.hashCode();
- }
*
* @param index Index of the argument, numbered from 0.
* @param helper Helper object to preserve intermediate results.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|