Ignore:
Timestamp:
2005-06-03T14:45:24+12:00 (19 years ago)
Author:
mdewsnip
Message:

Removed the Dimension objects from the Utility class, as part of tidying it up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/Utility.java

    r10007 r10008  
    6060 * @version 2.3b
    6161 */
    62 public class Utility {
    63     static final public Dimension MINIMUM_BUTTON_SIZE = new Dimension(100, 25);
    64     // static final public Dimension DOUBLE_IMAGE_BUTTON_SIZE = new Dimension(190, 35);
    65     static final public Dimension LABEL_SIZE = new Dimension(150, 25);
    66     /** The default size of a gatherer progress bar, in either the download view or the build view. */
    67     static final public Dimension PROGRESS_BAR_SIZE = new Dimension(580,65);
    68     /** The number of kilobytes to use as a io buffer. */
    69     static final public int FACTOR = 1;
    70     /** The size of the io buffer, calculated as FACTOR * 1024. */
    71     static final public int BUFFER_SIZE = FACTOR * 1024;
     62public class Utility
     63{
     64    /** The size of the io buffer, in bytes. */
     65    static final public int BUFFER_SIZE = 1024;
    7266    /** Definition of an important directory name, in this case the base dir, or the working directory of the Gatherer. */
    7367
Note: See TracChangeset for help on using the changeset viewer.