Changeset 9249 in josm for trunk


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

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

Location:
trunk
Files:
2 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/.settings/org.eclipse.jdt.core.prefs

    r9246 r9249  
    5555org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning
    5656org.eclipse.jdt.core.compiler.problem.missingJavadocTagsMethodTypeParameters=enabled
    57 org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
     57org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=enabled
    5858org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=private
    5959org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning
  • trunk/build.xml

    r9212 r9249  
    276276                encoding="UTF-8"   
    277277                packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
     278                    excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*"
    278279                windowtitle="JOSM"
    279280                use="true"
  • trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java

    r8795 r9249  
    3232 *         RegexValidator validator = new RegexValidator(regexs, false);
    3333 * </pre>
    34  * <p>
    3534 * <ul>
    3635 *   <li>Validate <code>true</code> or <code>false</code>:
  • 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
  • trunk/src/org/openstreetmap/josm/tools/HttpClient.java

    r9232 r9249  
    328328         * @return {@code Expire} HTTP header
    329329         * @see HttpURLConnection#getExpiration()
    330          * @since
     330         * @since 9232
    331331         */
    332332        public long getExpiration() {
Note: See TracChangeset for help on using the changeset viewer.