Ignore:
Timestamp:
2010-02-27T23:24:25+01:00 (14 years ago)
Author:
bastiK
Message:

applied #4617 - new design for download dialog (patch by Radomír Černoch)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/GBC.java

    r1169 r3057  
    9797
    9898    /**
     99     * Specifies how to distribute extra horizontal space.
     100     * @param weidhtx   Weight in horizontal direction
     101     * @param weighty   Weight in vertical direction
     102     * @return This constraint for chaining.
     103     */
     104    public GBC weight(int weightx, int weighty) {
     105        this.weightx = weightx;
     106        this.weighty = weighty;
     107        return this;
     108    }
     109
     110    /**
    99111     * This is a helper to easily create a glue with a minimum default value.
    100112     * @param x If higher than 0, this will be a horizontal glue with x as minimum
Note: See TracChangeset for help on using the changeset viewer.