Ignore:
Timestamp:
2018-03-04T01:20:15+01:00 (6 years ago)
Author:
Don-vip
Message:

see #11924, see #15560, see #16048 - tt HTML tag is deprecated in HTML5: use code instead

Location:
trunk/src/org/openstreetmap/josm/data
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/UserIdentityManager.java

    r12881 r13493  
    77
    88import org.openstreetmap.josm.Main;
    9 import org.openstreetmap.josm.spi.preferences.PreferenceChangeEvent;
    10 import org.openstreetmap.josm.spi.preferences.PreferenceChangedListener;
    119import org.openstreetmap.josm.data.oauth.OAuthAccessTokenHolder;
    1210import org.openstreetmap.josm.data.osm.User;
    1311import org.openstreetmap.josm.data.osm.UserInfo;
    14 import org.openstreetmap.josm.spi.preferences.StringSetting;
    1512import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
    1613import org.openstreetmap.josm.io.OnlineResource;
     
    2017import org.openstreetmap.josm.io.auth.CredentialsManager;
    2118import org.openstreetmap.josm.spi.preferences.Config;
     19import org.openstreetmap.josm.spi.preferences.PreferenceChangeEvent;
     20import org.openstreetmap.josm.spi.preferences.PreferenceChangedListener;
     21import org.openstreetmap.josm.spi.preferences.StringSetting;
    2222import org.openstreetmap.josm.tools.CheckParameterUtil;
    2323import org.openstreetmap.josm.tools.JosmRuntimeException;
     
    3838 * The current user is fully identified if JOSM knows both the user name and the unique
    3939 * id of the users OSM account. The latter is retrieved from the OSM server with a
    40  * <tt>GET /api/0.6/user/details</tt> request, submitted with the user name and password
     40 * <code>GET /api/0.6/user/details</code> request, submitted with the user name and password
    4141 * of the current user.
    4242 *
  • trunk/src/org/openstreetmap/josm/data/imagery/OffsetBookmark.java

    r13243 r13493  
    312312     * @return the bookmark at the given index
    313313     * @throws IndexOutOfBoundsException if the index is out of range
    314      *         (<tt>index &lt; 0 || index &gt;= size()</tt>)
     314     *         (<code>index &lt; 0 || index &gt;= size()</code>)
    315315     * @since 11651
    316316     */
  • trunk/src/org/openstreetmap/josm/data/osm/DefaultNameFormatter.java

    r13391 r13493  
    9696     * Replies the list of naming tags used in relations. The list is given (in this order) by:
    9797     * <ul>
    98      *   <li>by the tag names in the preference <tt>relation.nameOrder</tt></li>
     98     *   <li>by the tag names in the preference <code>relation.nameOrder</code></li>
    9999     *   <li>by the default tags in {@link #DEFAULT_NAMING_TAGS_FOR_RELATIONS}
    100100     * </ul>
     
    113113    /**
    114114     * Decorates the name of primitive with its id, if the preference
    115      * <tt>osm-primitives.showid</tt> is set. Shows unique id if osm-primitives.showid.new-primitives is set
     115     * <code>osm-primitives.showid</code> is set. Shows unique id if osm-primitives.showid.new-primitives is set
    116116     *
    117117     * @param name  the name without the id
     
    511511    /**
    512512     * Decorates the name of primitive with its id, if the preference
    513      * <tt>osm-primitives.showid</tt> is set.
     513     * <code>osm-primitives.showid</code> is set.
    514514     *
    515515     * The id is append to the {@link StringBuilder} passed in <code>name</code>.
  • trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java

    r13103 r13493  
    219219    /**
    220220     * Replies the name of this primitive. The default implementation replies the value
    221      * of the tag <tt>name</tt> or null, if this tag is not present.
     221     * of the tag <code>name</code> or null, if this tag is not present.
    222222     *
    223223     * @return the name of this primitive
  • trunk/src/org/openstreetmap/josm/data/osm/Way.java

    r13434 r13493  
    527527    /**
    528528     * Returns the last node of this way.
    529      * The result equals <tt>{@link #getNode getNode}({@link #getNodesCount getNodesCount} - 1)</tt>.
     529     * The result equals <code>{@link #getNode getNode}({@link #getNodesCount getNodesCount} - 1)</code>.
    530530     * @return the last node of this way
    531531     * @since 1400
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java

    r12620 r13493  
    301301    /**
    302302     * Replies the name of this primitive. The default implementation replies the value
    303      * of the tag <tt>name</tt> or null, if this tag is not present.
     303     * of the tag <code>name</code> or null, if this tag is not present.
    304304     *
    305305     * @return the name of this primitive
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/relations/Multipolygon.java

    r13206 r13493  
    4040
    4141    /** preference key for a collection of roles which indicate that the respective member belongs to an
    42      * <em>outer</em> polygon. Default is <tt>outer</tt>.
     42     * <em>outer</em> polygon. Default is <code>outer</code>.
    4343     */
    4444    public static final String PREF_KEY_OUTER_ROLES = "mappaint.multipolygon.outer.roles";
     
    5050
    5151    /** preference key for a collection of roles which indicate that the respective member belongs to an
    52      * <em>inner</em> polygon. Default is <tt>inner</tt>.
     52     * <em>inner</em> polygon. Default is <code>inner</code>.
    5353     */
    5454    public static final String PREF_KEY_INNER_ROLES = "mappaint.multipolygon.inner.roles";
  • trunk/src/org/openstreetmap/josm/data/preferences/AbstractProperty.java

    r13001 r13493  
    140140        /**
    141141         * Constructs a new {@code InvalidPreferenceValueException} with the specified cause and a detail message of
    142          * <tt>(cause==null ? null : cause.toString())</tt> (which typically contains the class and detail message of <tt>cause</tt>).
     142         * <code>(cause==null ? null : cause.toString())</code> (which typically contains the class and detail message of <code>cause</code>).
    143143         *
    144144         * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
  • trunk/src/org/openstreetmap/josm/data/projection/ProjectionConfigurationException.java

    r12453 r13493  
    1616     *         by the {@link #getMessage()} method).
    1717     * @param  cause the cause (which is saved for later retrieval by the
    18      *         {@link #getCause()} method).  (A <tt>null</tt> value is
     18     *         {@link #getCause()} method).  (A <code>null</code> value is
    1919     *         permitted, and indicates that the cause is nonexistent or unknown.)
    2020     */
     
    3535     * Constructs a new {@code ProjectionConfigurationException}.
    3636     * @param  cause the cause (which is saved for later retrieval by the
    37      *         {@link #getCause()} method).  (A <tt>null</tt> value is
     37     *         {@link #getCause()} method).  (A <code>null</code> value is
    3838     *         permitted, and indicates that the cause is nonexistent or unknown.)
    3939     */
  • trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java

    r12976 r13493  
    178178     * @param member to be verified
    179179     * @param n relation to be verified
    180      * @return <tt>true</tt> if member passed any of definition within preset
     180     * @return <code>true</code> if member passed any of definition within preset
    181181     *
    182182     */
Note: See TracChangeset for help on using the changeset viewer.