Ignore:
Timestamp:
2016-08-28T19:00:16+02:00 (8 years ago)
Author:
Don-vip
Message:

improve javadoc, unit tests, reduce visibility of some public fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java

    r10861 r10910  
    388388    /**
    389389     * The list model for the list of relations displayed in the relation list dialog.
    390      *
    391390     */
    392391    private class RelationListModel extends AbstractListModel<Relation> {
     
    400399        }
    401400
     401        /**
     402         * Clears the model.
     403         */
    402404        public void clear() {
    403405            relations.clear();
     
    407409        }
    408410
     411        /**
     412         * Sorts the model using {@link DefaultNameFormatter} relation comparator.
     413         */
    409414        public void sort() {
    410415            relations.sort(DefaultNameFormatter.getInstance().getRelationComparator());
Note: See TracChangeset for help on using the changeset viewer.