Ignore:
Timestamp:
2014-01-03T13:34:53+01:00 (10 years ago)
Author:
simon04
Message:

Fix Javadoc links (@see @link => @see)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java

    r6560 r6610  
    139139        /**
    140140         * Creates a list of values, e.g., for the {@code dashes} property.
    141          * @see {@link Arrays#asList(Object[])}
     141         * @see Arrays#asList(Object[])
    142142         */
    143143        public static List list(Object... args) {
     
    159159        /**
    160160         * Splits string {@code toSplit} at occurrences of the separator string {@code sep} and returns a list of matches.
    161          * @see {@link String#split(String)}
     161         * @see String#split(String)
    162162         * @since 5699
    163163         */
     
    168168        /**
    169169         * Creates a color value with the specified amounts of {@code r}ed, {@code g}reen, {@code b}lue (arguments from 0.0 to 1.0)
    170          * @see {@link Color#Color(float, float, float)}
     170         * @see Color#Color(float, float, float)
    171171         */
    172172        public static Color rgb(float r, float g, float b) {
     
    196196        /**
    197197         * Get the value of the red color channel in the rgb color model
    198          * @see {@link java.awt.Color#getRed()}
     198         * @see java.awt.Color#getRed()
    199199         */
    200200        public static float red(Color c) {
     
    204204        /**
    205205         * Get the value of the green color channel in the rgb color model
    206          * @see {@link java.awt.Color#getGreen()}
     206         * @see java.awt.Color#getGreen()
    207207         */
    208208        public static float green(Color c) {
     
    212212        /**
    213213         * Get the value of the blue color channel in the rgb color model
    214          * @see {@link java.awt.Color#getBlue()}
     214         * @see java.awt.Color#getBlue()
    215215         */
    216216        public static float blue(Color c) {
     
    341341        /**
    342342         * Determines if the objects {@code a} and {@code b} are equal.
    343          * @see {@link Object#equals(Object)}
     343         * @see Object#equals(Object)
    344344         */
    345345        public static boolean equal(Object a, Object b) {
     
    372372         * Obtains the JOSM'key {@link org.openstreetmap.josm.data.Preferences} string for key {@code key},
    373373         * and defaults to {@code def} if that is null.
    374          * @see {@link org.openstreetmap.josm.data.Preferences#get(String, String)}
     374         * @see org.openstreetmap.josm.data.Preferences#get(String, String)
    375375         */
    376376        public static String JOSM_pref(String key, String def) {
     
    382382         * Obtains the JOSM'key {@link org.openstreetmap.josm.data.Preferences} color for key {@code key},
    383383         * and defaults to {@code def} if that is null.
    384          * @see {@link org.openstreetmap.josm.data.Preferences#getColor(String, java.awt.Color)}
     384         * @see org.openstreetmap.josm.data.Preferences#getColor(String, java.awt.Color)
    385385         */
    386386        public static Color JOSM_pref_color(String key, Color def) {
     
    391391        /**
    392392         * Tests if string {@code target} matches pattern {@code pattern}
    393          * @see {@link Pattern#matches(String, CharSequence)}
     393         * @see Pattern#matches(String, CharSequence)
    394394         * @since 5699
    395395         */
     
    452452        /**
    453453         * Returns the OSM id of the current object.
    454          * @see {@link org.openstreetmap.josm.data.osm.AbstractPrimitive#generateUniqueId()}
     454         * @see OsmPrimitive#getUniqueId()
    455455         */
    456456        public long osm_id() {
     
    470470        /**
    471471         * Returns the substring of {@code s} starting at index {@code begin} (inclusive, 0-indexed).
    472          * * @see {@link String#substring(int)}
     472         * @see String#substring(int)
    473473         */
    474474        public static String substring(String s, /* due to missing Cascade.convertTo for int*/ float begin) {
     
    479479         * Returns the substring of {@code s} starting at index {@code begin} (inclusive)
    480480         * and ending at index {@code end}, (exclusive, 0-indexed).
    481          * @see {@link String#substring(int, int)}
     481         * @see String#substring(int, int)
    482482         */
    483483        public static String substring(String s, float begin, float end) {
     
    487487        /**
    488488         * Replaces in {@code s} every {@code} target} substring by {@code replacement}.
    489          * * @see {@link String#replace(CharSequence, CharSequence)}
     489         * * @see String#replace(CharSequence, CharSequence)
    490490         */
    491491        public static String replace(String s, String target, String replacement) {
Note: See TracChangeset for help on using the changeset viewer.