Changeset 9367


Ignore:
Timestamp:
2005-03-10T13:31:55+13:00 (19 years ago)
Author:
mdewsnip
Message:

Changed some strings to have the full dictionary key value, so they are marked as used.

Location:
trunk/gli/src/org/greenstone/gatherer/gui/metaaudit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/metaaudit/Autofilter.java

    r8003 r9367  
    2727package org.greenstone.gatherer.gui.metaaudit;
    2828
    29 /**************************************************************************************
    30  * Title:        Gatherer
    31  * Description:  The Gatherer: a tool for gathering and enriching a digital collection.
    32  * Copyright:    Copyright (c) 2001
    33  * Company:      The University of Waikato
    34  * Written:        /05/02
    35  * Revised:      22/08/02 Revamped, Optimized and Commented.
    36  *               13-08-03 Extended matching functionality to correctly handle the wildcard character
    37  **************************************************************************************/
    3829
    3930import java.util.ArrayList;
     
    234225    public static final boolean OR = false;
    235226    /** An enumeration of symbolic names of various matching methods. */
    236     public static final String METHOD_LIST[] = {"eqeq", "!eq", "<", "<eq", ">", ">eq", "^", "!^", "$", "!$", "?", "!?"};
     227    public static final String METHOD_LIST[] = { "Autofilter.eqeq", "Autofilter.!eq", "Autofilter.<", "Autofilter.<eq", "Autofilter.>", "Autofilter.>eq", "Autofilter.^", "Autofilter.!^", "Autofilter.$", "Autofilter.!$", "Autofilter.?", "Autofilter.!?" };
     228
    237229    /** Default Constructor. */
    238230    public Autofilter() {
  • trunk/gli/src/org/greenstone/gatherer/gui/metaaudit/AutofilterDialog.java

    r8243 r9367  
    185185    // Assign values to method comboboxes.
    186186    for(int i = 0; i < Autofilter.METHOD_LIST.length; i++) {
    187         first_method.addItem(Dictionary.get("Autofilter." + Autofilter.METHOD_LIST[i]));
    188         second_method.addItem(Dictionary.get("Autofilter." + Autofilter.METHOD_LIST[i]));
     187        first_method.addItem(Dictionary.get(Autofilter.METHOD_LIST[i]));
     188        second_method.addItem(Dictionary.get(Autofilter.METHOD_LIST[i]));
    189189    }
    190190    JPanel button_pane = new JPanel();
Note: See TracChangeset for help on using the changeset viewer.