Ignore:
Timestamp:
2014-02-10T00:51:53+01:00 (12 years ago)
Author:
Don-vip
Message:

javadoc fixes for jdk8 compatibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/FileDrop.java

    r6798 r6830  
    3939 * dropped onto, but only {@link javax.swing.JComponent}s will indicate
    4040 * the drop event with a changed border.
    41  * <p/>
     41 * <p>
    4242 * To use this class, construct a new <tt>FileDrop</tt> by passing
    4343 * it the target component and a <tt>Listener</tt> to receive notification
    4444 * when file(s) have been dropped. Here is an example:
    45  * <p/>
    46  * <code><pre>
     45 * <p>
     46 * <code>
    4747 *      JPanel myPanel = new JPanel();
    4848 *      new FileDrop( myPanel, new FileDrop.Listener()
     
    5353 *          }   // end filesDropped
    5454 *      }); // end FileDrop.Listener
    55  * </pre></code>
    56  * <p/>
     55 * </code>
     56 * <p>
    5757 * You can specify the border that will appear when files are being dragged by
    5858 * calling the constructor with a {@link javax.swing.border.Border}. Only
    5959 * <tt>JComponent</tt>s will show any indication with a border.
    60  * <p/>
     60 * <p>
    6161 * You can turn on some debugging features by passing a <tt>PrintStream</tt>
    6262 * object (such as <tt>System.out</tt>) into the full constructor. A <tt>null</tt>
    6363 * value will result in no extra debugging information being output.
    64  * <p/>
     64 * <p>
    6565 *
    6666 * <p>I'm releasing this code into the Public Domain. Enjoy.
     
    449449     * Implement this inner interface to listen for when files are dropped. For example
    450450     * your class declaration may begin like this:
    451      * <code><pre>
     451     * <code>
    452452     *      public class MyClass implements FileDrop.Listener
    453453     *      ...
     
    457457     *      }   // end filesDropped
    458458     *      ...
    459      * </pre></code>
     459     * </code>
    460460     */
    461461    public static interface Listener {
Note: See TracChangeset for help on using the changeset viewer.