Javadoc fixes. End tags for <code> were missing. This caused the Javadoc for the methods

following the missing end tag to be formatted entirely in the "code" format. Fixed a few
instances where *s were inadverently included in the Javadoc text that should not have
been.


git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mrglavas 2005-06-17 03:10:33 +00:00
parent 6b0f74afed
commit a11ee29779
4 changed files with 7 additions and 7 deletions

View File

@ -52,8 +52,8 @@ import javax.xml.namespace.QName;
* <li>A==B (A and B are of the same duration) * <li>A==B (A and B are of the same duration)
* <li>A&lt;>B (Comparison between A and B is indeterminate) * <li>A&lt;>B (Comparison between A and B is indeterminate)
* </ol> * </ol>
*
* * <p>For example, 30 days cannot be meaningfully compared to one month. * <p>For example, 30 days cannot be meaningfully compared to one month.
* The {@link #compare(Duration duration)} method implements this * The {@link #compare(Duration duration)} method implements this
* relationship.</p> * relationship.</p>
* *
@ -309,7 +309,7 @@ public abstract class Duration {
* *
* <p>If the seconds field carries more digits than milli-second order, * <p>If the seconds field carries more digits than milli-second order,
* those will be simply discarded (or in other words, rounded to zero.) * those will be simply discarded (or in other words, rounded to zero.)
* For example, for any Calendar value <code>x<code>,</p> * For example, for any Calendar value <code>x</code>,</p>
* <pre> * <pre>
* <code>new Duration("PT10.00099S").getTimeInMills(x) == 10000</code>. * <code>new Duration("PT10.00099S").getTimeInMills(x) == 10000</code>.
* <code>new Duration("-PT10.00099S").getTimeInMills(x) == -10000</code>. * <code>new Duration("-PT10.00099S").getTimeInMills(x) == -10000</code>.
@ -346,7 +346,7 @@ public abstract class Duration {
* *
* <p>If the seconds field carries more digits than milli-second order, * <p>If the seconds field carries more digits than milli-second order,
* those will be simply discarded (or in other words, rounded to zero.) * those will be simply discarded (or in other words, rounded to zero.)
* For example, for any <code>Date</code> value <code>x<code>,</p> * For example, for any <code>Date</code> value <code>x</code>,</p>
* <pre> * <pre>
* <code>new Duration("PT10.00099S").getTimeInMills(x) == 10000</code>. * <code>new Duration("PT10.00099S").getTimeInMills(x) == 10000</code>.
* <code>new Duration("-PT10.00099S").getTimeInMills(x) == -10000</code>. * <code>new Duration("-PT10.00099S").getTimeInMills(x) == -10000</code>.

View File

@ -154,7 +154,7 @@ public abstract class TransformerFactory {
throws TransformerConfigurationException; throws TransformerConfigurationException;
/** /**
* <p>Create a new <code>Transformer<code> that performs a copy * <p>Create a new <code>Transformer</code> that performs a copy
* of the <code>Source</code> to the <code>Result</code>. * of the <code>Source</code> to the <code>Result</code>.
* i.e. the "<em>identity transform</em>".</p> * i.e. the "<em>identity transform</em>".</p>
* *

View File

@ -38,7 +38,7 @@ public interface TransformerHandler
* <code>TransformerHandler</code> to be used for the transformation.</p> * <code>TransformerHandler</code> to be used for the transformation.</p>
* *
* @param result A <code>Result</code> instance, should not be * @param result A <code>Result</code> instance, should not be
* <code>null<code>. * <code>null</code>.
* *
* @throws IllegalArgumentException if result is invalid for some reason. * @throws IllegalArgumentException if result is invalid for some reason.
*/ */

View File

@ -67,7 +67,7 @@ public interface Locator2 extends Locator
* and comparisons should be case-insensitive. * and comparisons should be case-insensitive.
* *
* @return Name of the character encoding being used to interpret * @return Name of the character encoding being used to interpret
* * the entity's text, or null if this was not provided for a * * the entity's text, or null if this was not provided for a
* character stream passed through an InputSource or is otherwise * character stream passed through an InputSource or is otherwise
* not yet available in the current parsing state. * not yet available in the current parsing state.
*/ */