Changeset 5835 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2013-04-07T21:59:55+02:00 (11 years ago)
Author:
stoecker
Message:

Javadoc fixes

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

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java

    r5812 r5835  
    329329    private boolean leftHandTraffic;
    330330
    331     /**
    332      * {@inheritDoc}
    333      */
    334331    public StyledMapRenderer(Graphics2D g, NavigatableComponent nc, boolean isInactiveMode) {
    335332        super(g, nc, isInactiveMode);
  • trunk/src/org/openstreetmap/josm/gui/FileDrop.java

    r5275 r5835  
    1919/**
    2020 * This class makes it easy to drag and drop files from the operating
    21  * system to a Java program. Any <tt>java.awt.Component</tt> can be
    22  * dropped onto, but only <tt>javax.swing.JComponent</tt>s will indicate
     21 * system to a Java program. Any {@link java.awt.Component} can be
     22 * dropped onto, but only {@link javax.swing.JComponent}s will indicate
    2323 * the drop event with a changed border.
    2424 * <p/>
     
    3939 * <p/>
    4040 * You can specify the border that will appear when files are being dragged by
    41  * calling the constructor with a <tt>javax.swing.border.Border</tt>. Only
     41 * calling the constructor with a {@link javax.swing.border.Border}. Only
    4242 * <tt>JComponent</tt>s will show any indication with a border.
    4343 * <p/>
     
    630630    /**
    631631     * This is the event that is passed to the
    632      * {@link FileDropListener#filesDropped filesDropped(...)} method in
    633      * your {@link FileDropListener} when files are dropped onto
     632     * {@link FileDrop.Listener#filesDropped filesDropped(...)} method in
     633     * your {@link FileDrop.Listener} when files are dropped onto
    634634     * a registered drop target.
    635635     *
     
    650650         *
    651651         * @param files The array of files that were dropped
    652          * @source The event source
     652         * @param source The event source
    653653         * @since 1.1
    654654         */
     
    887887         *
    888888         * @author Robert Harder
    889          * @copyright 2001
    890          * @version 1.1
    891889         * @since 1.1
    892890         */
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellRenderer.java

    r5299 r5835  
    135135     * render the row id
    136136     * @param row the row index
    137      * @param isSelected
    138137     */
    139138    protected  void renderRowId(int row) {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java

    r5266 r5835  
    1313
    1414/**
    15  * This is the {@link TableCellRenderer} used in the tables of {@link RelationMemberMerger}.
     15 * This is the {@link TableCellRenderer} used in the tables of
     16 * {@link org.openstreetmap.josm.gui.conflict.pair.relation.RelationMemberMerger}.
    1617 *
    1718 */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeModel.java

    r5266 r5835  
    1515/**
    1616 * This is a {@link TreeModel} which provides the hierarchical structure of {@link Relation}s
    17  * to a  {@link JTree}.
     17 * to a {@link javax.swing.tree.JTree}.
    1818 *
    1919 * The model is initialized with a root relation or with a list of {@link RelationMember}s, see
  • trunk/src/org/openstreetmap/josm/gui/history/NodeListTableColumnModel.java

    r5266 r5835  
    99
    1010/**
    11  * The {@link TableColumnModel} for the table with the list of nodes.
     11 * The {@link javax.swing.table.TableColumnModel} for the table with the list of nodes.
    1212 *
    1313 *
  • trunk/src/org/openstreetmap/josm/gui/history/PointInTimeType.java

    r5266 r5835  
    33
    44/**
    5  * PointInTimeType enumerates two points in time in the {@link History} of an {@link OsmPrimitive}.
     5 * PointInTimeType enumerates two points in time in the {@link org.openstreetmap.josm.data.osm.history.History}
     6 * of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive}.
    67 * @author karl
    7  *
    88 */
    99public enum PointInTimeType {
  • trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java

    r5627 r5835  
    1919
    2020/**
    21  * The {@link TableCellRenderer} for a list of relation members in {@link HistoryBrower}
     21 * The {@link TableCellRenderer} for a list of relation members in {@link HistoryBrowser}
    2222 *
    2323 *
  • trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java

    r5266 r5835  
    88
    99/**
    10  * The {@link TableColumnModel} for the table with the list of relation members.
     10 * The {@link javax.swing.table.TableColumnModel} for the table with the list of relation members.
    1111 *
    1212 */
  • trunk/src/org/openstreetmap/josm/gui/io/SaveLayerTask.java

    r5266 r5835  
    1010
    1111/**
    12  * SaveLayerTask saves the data managed by an {@link OsmDataLayer} to the
    13  * {@link OsmDataLayer#getAssociatedFile()}.
     12 * SaveLayerTask saves the data managed by an {@link org.openstreetmap.josm.gui.layer.OsmDataLayer} to the
     13 * {@link org.openstreetmap.josm.gui.layer.OsmDataLayer#getAssociatedFile()}.
    1414 *
    1515 * <pre>
  • trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java

    r5266 r5835  
    1414
    1515/**
    16  * Reads the history of an {@link OsmPrimitive} from the OSM API server.
     16 * Reads the history of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive} from the OSM API server.
    1717 *
    1818 */
Note: See TracChangeset for help on using the changeset viewer.