Ignore:
Timestamp:
2016-01-01T19:51:11+01:00 (8 years ago)
Author:
Don-vip
Message:

javadoc update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/ChooseTrackVisibilityAction.java

    r9078 r9243  
    108108
    109109    /**
    110      * gathers all available data for the tracks and returns them as array of arrays
    111      * in the expected column order  */
     110     * Gathers all available data for the tracks and returns them as array of arrays
     111     * in the expected column order.
     112     * @return table data
     113     */
    112114    private Object[][] buildTableContents() {
    113115        Object[][] tracks = new Object[layer.data.tracks.size()][5];
     
    128130    /**
    129131     * Builds an non-editable table whose 5th column will open a browser when double clicked.
    130      * The table will fill its parent. */
     132     * The table will fill its parent.
     133     * @param content table data
     134     * @return non-editable table
     135     */
    131136    private JTable buildTable(Object[][] content) {
    132137        final String[] headers = {tr("Name"), tr("Description"), tr("Timespan"), tr("Length"), tr("URL")};
Note: See TracChangeset for help on using the changeset viewer.