Ignore:
Timestamp:
2003-11-05T13:46:44+13:00 (21 years ago)
Author:
mdewsnip
Message:

Commented out about 60 unused functions.

File:
1 edited

Legend:

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

    r5581 r5785  
    301301
    302302    /** Retrieve the value of the named property as a Dimension. */
    303     public Dimension getDimension(String property, boolean general) {
     303    /* private Dimension getDimension(String property, boolean general) {
    304304    Dimension result = new Dimension(100, 100); // Default
    305305    try {
     
    315315    }
    316316    return result;
    317     }
     317    } */
    318318
    319319    /** Retrieve the value of the named property as a FontUIResource. */
     
    512512
    513513    /** Set the named property, from the specified configuration, using the given Dimension value. */
    514     public void setDimension(String property, boolean general, Dimension value) {
     514    /* private void setDimension(String property, boolean general, Dimension value) {
    515515    StringBuffer text = new StringBuffer("");
    516516    text.append(value.width);
     
    518518    text.append(value.height);
    519519    setString(property, general, text.toString());
    520     }
     520    } */
    521521
    522522    /** Set the named property, from the specified configuration, using the given Font value. */
     
    541541
    542542    /** Set the named property, from the specified configuration, using the given integer value. */
    543     public void setInt(String property, boolean general, int value) {
     543    /* private void setInt(String property, boolean general, int value) {
    544544    setString(property, general, String.valueOf(value));
    545     }
     545    } */
    546546
    547547    /** Set the named property, from the specified configuration, using the given Locale value. */
Note: See TracChangeset for help on using the changeset viewer.