Javadoc fix intended for 2.1 release

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@189443 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-06-07 21:28:07 +00:00
parent 4656c1478d
commit 1e1da2d2c7
1 changed files with 9 additions and 10 deletions

View File

@ -18,10 +18,6 @@ package org.apache.commons.lang.time;
/** /**
* <p><code>StopWatch</code> provides a convenient API for timings.</p> * <p><code>StopWatch</code> provides a convenient API for timings.</p>
* *
* <p>The methods do <b>not</b> protect against inappropriate calls. Thus you
* can call stop before start, resume before suspend or unsplit before split.
* The results are indeterminate in these cases.</p>
*
* <p>To start the watch, call {@link #start()}. At this point you can:</p> * <p>To start the watch, call {@link #start()}. At this point you can:</p>
* <ul> * <ul>
* <li>{@link #split()} the watch to get the time whilst the watch continues in the * <li>{@link #split()} the watch to get the time whilst the watch continues in the
@ -36,12 +32,15 @@ package org.apache.commons.lang.time;
* <p>It is intended that the output methods {@link #toString()} and {@link #getTime()} * <p>It is intended that the output methods {@link #toString()} and {@link #getTime()}
* should only be called after stop, split or suspend, however a suitable result will * should only be called after stop, split or suspend, however a suitable result will
* be returned at other points.</p> * be returned at other points.</p>
*
1. split(), suspend(), or stop() cannot be invoked twice. * <p>NOTE: As from v2.1, the methods protect against inappropriate calls.
2. unsplit() may only be called if the watch has been split() * Thus you cannot now call stop before start, resume before suspend or
3. resume() may only be called if the watch has been suspend() * unsplit before split.</p>
4. start() cannot be called twice. *
* <p>1. split(), suspend(), or stop() cannot be invoked twice<br />
* 2. unsplit() may only be called if the watch has been split()<br />
* 3. resume() may only be called if the watch has been suspend()<br />
* 4. start() cannot be called twice without calling reset()</p>
* *
* @author Henri Yandell * @author Henri Yandell
* @author Stephen Colebourne * @author Stephen Colebourne