Changeset 13750 in josm


Ignore:
Timestamp:
2018-05-13T12:26:15+02:00 (6 years ago)
Author:
wiktorn
Message:

Add javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/imagery/WMTSLayerSelection.java

    r13748 r13750  
    2727import org.openstreetmap.josm.tools.GBC;
    2828
     29/**
     30 *
     31 * Class for displaying WMTS layer selection panel
     32 *
     33 */
    2934public class WMTSLayerSelection extends JPanel {
    3035    private List<Entry<String, List<Layer>>> layers;
    3136    private JTable list;
    3237
     38    /**
     39     *
     40     * @param layers list of grouped layers (by tileMatrixSet and name)
     41     */
    3342    public WMTSLayerSelection(List<Entry<String, List<Layer>>> layers) {
    3443        super(new GridBagLayout());
     
    8190                });
    8291        list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    83 //        list.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    8492        list.setAutoCreateRowSorter(true);
    8593        list.setRowSelectionAllowed(true);
Note: See TracChangeset for help on using the changeset viewer.