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:
parent
6b0f74afed
commit
a11ee29779
@ -52,8 +52,8 @@ import javax.xml.namespace.QName;
|
||||
* <li>A==B (A and B are of the same duration)
|
||||
* <li>A<>B (Comparison between A and B is indeterminate)
|
||||
* </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
|
||||
* relationship.</p>
|
||||
*
|
||||
@ -309,7 +309,7 @@ public abstract class Duration {
|
||||
*
|
||||
* <p>If the seconds field carries more digits than milli-second order,
|
||||
* 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>
|
||||
* <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,
|
||||
* 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>
|
||||
* <code>new Duration("PT10.00099S").getTimeInMills(x) == 10000</code>.
|
||||
* <code>new Duration("-PT10.00099S").getTimeInMills(x) == -10000</code>.
|
||||
|
||||
@ -154,7 +154,7 @@ public abstract class TransformerFactory {
|
||||
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>.
|
||||
* i.e. the "<em>identity transform</em>".</p>
|
||||
*
|
||||
|
||||
@ -38,7 +38,7 @@ public interface TransformerHandler
|
||||
* <code>TransformerHandler</code> to be used for the transformation.</p>
|
||||
*
|
||||
* @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.
|
||||
*/
|
||||
|
||||
@ -67,7 +67,7 @@ public interface Locator2 extends Locator
|
||||
* and comparisons should be case-insensitive.
|
||||
*
|
||||
* @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
|
||||
* not yet available in the current parsing state.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user