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/BoundingBoxSelectionPanel.java

    r11893 r12304  
    2323
    2424/**
    25  *
    26  *
     25 * A panel that allows the user to input the coordinates of a lat/lon box
    2726 */
    2827public class BoundingBoxSelectionPanel extends JPanel {
     
    8584    }
    8685
     86    /**
     87     * Sets the bounding box to the given area
     88     * @param area The new input values
     89     */
    8790    public void setBoundingBox(Bounds area) {
    8891        updateBboxFields(area);
    8992    }
    9093
     94    /**
     95     * Get the bounding box the user selected
     96     * @return The box or <code>null</code> if no valid data was input.
     97     */
    9198    public Bounds getBoundingBox() {
    9299        double minlon, minlat, maxlon, maxlat;
Note: See TracChangeset for help on using the changeset viewer.