Ignore:
Timestamp:
2017-06-02T23:21:03+02:00 (7 years ago)
Author:
michael2402
Message:

Javadoc for public methods / classes in gui.util and gui.widgets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/ListPopupMenu.java

    r11747 r12304  
    99
    1010/**
     11 * A popup menu for one or more lists. If actions are added to this menu, a ListSelectionListener is registered automatically.
    1112 * @author Vincent
    12  *
    1313 */
    1414public class ListPopupMenu extends JPopupMenu {
     
    1616    private final JList<?>[] lists;
    1717
     18    /**
     19     * Create a new ListPopupMenu
     20     * @param lists The lists to which listeners should be appended
     21     */
    1822    public ListPopupMenu(JList<?>... lists) {
    1923        this.lists = lists;
Note: See TracChangeset for help on using the changeset viewer.