Ignore:
Timestamp:
2016-01-01T23:29:36+01:00 (8 years ago)
Author:
Don-vip
Message:

see #11390 - resolve last javadoc warnings with Java 8. "ant javadoc" now produces 0 warning \o/

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 deleted
3 edited

Legend:

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

    r8958 r9249  
    3434import org.openstreetmap.josm.Main;
    3535import org.openstreetmap.josm.actions.OpenFileAction;
     36import org.openstreetmap.josm.gui.FileDrop.TransferableObject;
    3637
    3738// CHECKSTYLE.OFF: HideUtilityClassConstructor
     
    6566 * object (such as <tt>System.out</tt>) into the full constructor. A <tt>null</tt>
    6667 * value will result in no extra debugging information being output.
    67  * <p>
    6868 *
    6969 * <p>I'm releasing this code into the Public Domain. Enjoy.
  • trunk/src/org/openstreetmap/josm/gui/help/HelpContentReader.java

    r9246 r9249  
    3535     *
    3636     * @param helpTopicUrl  the absolute help topic URL
    37      * @param dotest
     37     * @param dotest if {@code true}, checks if help content is empty
    3838     * @return the content, filtered and transformed for being displayed in the internal help browser
    3939     * @throws HelpContentReaderException if problem occurs
  • trunk/src/org/openstreetmap/josm/gui/util/StayOpenCheckBoxMenuItem.java

    r8126 r9249  
    33
    44import javax.swing.Action;
    5 import javax.swing.Icon;
    65import javax.swing.JCheckBoxMenuItem;
    76import javax.swing.MenuElement;
     
    98import javax.swing.event.ChangeEvent;
    109import javax.swing.event.ChangeListener;
    11 
    1210
    1311/**
     
    3331
    3432  /**
    35    * @see JCheckBoxMenuItem#JCheckBoxMenuItem()
    36    */
    37   public StayOpenCheckBoxMenuItem() {
    38     super();
    39   }
    40 
    41   /**
    42    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(Action)
     33   * Contructs a new {@code StayOpenCheckBoxMenuItem} whose properties are taken from the Action supplied.
     34   * @param a action
    4335   */
    4436  public StayOpenCheckBoxMenuItem(Action a) {
    4537    super(a);
    46   }
    47 
    48   /**
    49    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(Icon)
    50    */
    51   public StayOpenCheckBoxMenuItem(Icon icon) {
    52     super(icon);
    53   }
    54 
    55   /**
    56    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String)
    57    */
    58   public StayOpenCheckBoxMenuItem(String text) {
    59     super(text);
    60   }
    61 
    62   /**
    63    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, boolean)
    64    */
    65   public StayOpenCheckBoxMenuItem(String text, boolean selected) {
    66     super(text, selected);
    67   }
    68 
    69   /**
    70    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, Icon)
    71    */
    72   public StayOpenCheckBoxMenuItem(String text, Icon icon) {
    73     super(text, icon);
    74   }
    75 
    76   /**
    77    * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, Icon, boolean)
    78    */
    79   public StayOpenCheckBoxMenuItem(String text, Icon icon, boolean selected) {
    80     super(text, icon, selected);
    8138  }
    8239
Note: See TracChangeset for help on using the changeset viewer.