Ignore:
Timestamp:
2017-06-02T17:23:36+02:00 (7 years ago)
Author:
michael2402
Message:

Add missing javadoc in the org.openstreetmap.josm.gui.dialogs package.

File:
1 edited

Legend:

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

    r11747 r12301  
    5252    protected final transient GroupLayout layout = new GroupLayout(panel);
    5353
     54    /**
     55     * Creates a new OsmIdSelectionDialog
     56     * @param parent       The parent element that will be used for position and maximum size
     57     * @param title        The text that will be shown in the window titlebar
     58     * @param buttonTexts  String Array of the text that will appear on the buttons. The first button is the default one.
     59     */
    5460    public OsmIdSelectionDialog(Component parent, String title, String... buttonTexts) {
    5561        super(parent, title, buttonTexts);
    5662    }
    5763
     64    /**
     65     * Creates a new OsmIdSelectionDialog
     66     * @param parent The parent element that will be used for position and maximum size
     67     * @param title The text that will be shown in the window titlebar
     68     * @param buttonTexts String Array of the text that will appear on the buttons. The first button is the default one.
     69     * @param modal Set it to {@code true} if you want the dialog to be modal
     70     */
    5871    public OsmIdSelectionDialog(Component parent, String title, String[] buttonTexts, boolean modal) {
    5972        super(parent, title, buttonTexts, modal);
    6073    }
    6174
     75    /**
     76     * Creates a new OsmIdSelectionDialog
     77     * @param parent The parent element that will be used for position and maximum size
     78     * @param title The text that will be shown in the window titlebar
     79     * @param buttonTexts String Array of the text that will appear on the buttons. The first button is the default one.
     80     * @param modal Set it to {@code true} if you want the dialog to be modal
     81     * @param disposeOnClose whether to call {@link #dispose} when closing the dialog
     82     */
    6283    public OsmIdSelectionDialog(Component parent, String title, String[] buttonTexts, boolean modal, boolean disposeOnClose) {
    6384        super(parent, title, buttonTexts, modal, disposeOnClose);
Note: See TracChangeset for help on using the changeset viewer.