context/src/main/java/net/java/html/BrwsrCtx.java
changeset 790 30f20d9c0986
parent 655 7211ec5f3172
child 838 bdc3d696dd4a
     1.1 --- a/context/src/main/java/net/java/html/BrwsrCtx.java	Mon May 19 13:42:49 2014 +0200
     1.2 +++ b/context/src/main/java/net/java/html/BrwsrCtx.java	Sat Aug 02 12:59:31 2014 +0200
     1.3 @@ -109,7 +109,9 @@
     1.4          return cb.build();
     1.5      }
     1.6  
     1.7 -    /** Runs provided code in the context of this {@link BrwsrCtx}.
     1.8 +    /** 
     1.9 +     * <p>
    1.10 +     * Runs provided code in the context of this {@link BrwsrCtx}.
    1.11       * If there is an {@link Executor} {@link Contexts#find(net.java.html.BrwsrCtx, java.lang.Class)  registered in the context}
    1.12       * it is used to perform the given code. While the code <code>exec</code>
    1.13       * is running the value of {@link #findDefault(java.lang.Class)} returns
    1.14 @@ -117,7 +119,10 @@
    1.15       * policy, it may execute the runnable later (in such case this method
    1.16       * returns immediately). If the call to this method is done on the right
    1.17       * thread, the runnable should be executed synchronously.
    1.18 -     * <h5>Example Using a Timer</h5>
    1.19 +     * </p>
    1.20 +     * <p>
    1.21 +     * <b>Example Using a Timer</b>
    1.22 +     * </p>
    1.23  <pre>
    1.24  <b>public final class</b> Periodicaly <b>extends</b> {@link java.util.TimerTask} {
    1.25      <b>private final</b> {@link BrwsrCtx} ctx;