Changeset 7592 in josm


Ignore:
Timestamp:
2014-10-01T23:24:11+02:00 (10 years ago)
Author:
stoecker
Message:

fix JavaDoc

Location:
trunk/src/org/openstreetmap/josm
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java

    r7247 r7592  
    11421142     * @param g2 the Graphics2D object used to draw on
    11431143     * @param mv
    1144      * @param p1en segment's first point
    1145      * @param p2en segment's second point
     1144     * @param seg the reference segment
    11461145     */
    11471146    private void drawReferenceSegment(Graphics2D g2, MapView mv, ReferenceSegment seg)
  • trunk/src/org/openstreetmap/josm/gui/io/DownloadPrimitivesWithReferrersTask.java

    r7005 r7592  
    7979    /**
    8080     * Cancel recursively the task. Do not call directly
    81      * @see DownloadPrimitivesWithReferrersTask#operationCancel
     81     * @see DownloadPrimitivesWithReferrersTask#operationCanceled()
    8282     */
    8383    @Override
  • trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSource.java

    r7563 r7592  
    7070     * @param osm the primitive
    7171     * @param scale the map scale
    72      * @param multipolyOuterWay support for a very old multipolygon tagging style
    73      * where you add the tags both to the outer and the inner way.
    74      * However, independent inner way style is also possible.
    7572     * @param pretendWayIsClosed For styles that require the way to be closed,
    7673     * we pretend it is. This is useful for generating area styles from the (segmented)
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java

    r7402 r7592  
    188188     * <p>
    189189     * @param inputName to be checked for being constrained
    190      * @returns constraint type above
     190     * @return constraint type above
    191191     * @throws UnsupportedOperationException if name is not exact match, but narrowing and widening are
    192192     *          not supported for this name type.
     
    229229     * path lengths in name subtrees.
    230230     *
    231      * @returns distance of name from root
     231     * @return distance of name from root
    232232     * @throws UnsupportedOperationException if not supported for this name type
    233233     */
  • trunk/src/org/openstreetmap/josm/tools/ExifReader.java

    r7299 r7592  
    3737     * @param filename The JPEG file to read
    3838     * @return The date/time read in the EXIF section, or {@code null} if not found
    39      * @throws ParseException if {@link DateParser#parse} fails to parse date/time
     39     * @throws ParseException if {@link PrimaryDateParser#parse} fails to parse date/time
    4040     */
    4141    public static Date readTime(File filename) throws ParseException {
  • trunk/src/org/openstreetmap/josm/tools/GeoPropertyIndex.java

    r7509 r7592  
    6262    /**
    6363     * Look up the property for a certain point.
    64      * This gives the same result as {@link #geoProp#get(LatLon)}, but
     64     * This gives the same result as {@link GeoProperty#get(LatLon)}, but
    6565     * should be faster.
    6666     * @param ll the point coordinates
Note: See TracChangeset for help on using the changeset viewer.