Changeset 8884


Ignore:
Timestamp:
2005-01-11T09:19:52+13:00 (19 years ago)
Author:
mdewsnip
Message:

Moved the two CheckList classes into the util package, and removed the checklist package.

Location:
trunk/gli
Files:
2 added
1 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/clean.bat

    r8313 r8884  
    2626if exist "*.class" del "*.class"
    2727if exist "cdm\*.class" del "cdm\*.class"
    28 if exist "checklist\*.class" del "checklist\*.class"
    2928if exist "collection\*.class" del "collection\*.class"
    3029if exist "feedback\*.class" del "feedback\*.class"
     
    3231if exist "gems\*.class" del "gems\*.class"
    3332if exist "gui\*.class" del "gui\*.class"
    34 if exist "help\*.class" del "help\*.class"
    3533if exist "metadata\*.class" del "metadata\*.class"
    3634if exist "shell\*.class" del "shell\*.class"
  • trunk/gli/clean.sh

    r8313 r8884  
    1919rm -f *.class
    2020rm -rf cdm
    21 rm -rf checklist
    2221rm -rf collection
    2322rm -rf feedback
  • trunk/gli/makegli.bat

    r8580 r8884  
    163163"%JAVACPATH%\javac.exe" -d classes/ -sourcepath src/ -classpath classes/;lib/apache.jar;lib/qfslib.jar;lib/mail.jar;lib/activation.jar src/org/greenstone/gatherer/*.java
    164164"%JAVACPATH%\javac.exe" -d classes/ -sourcepath src/ -classpath classes/;lib/apache.jar;lib/qfslib.jar;lib/mail.jar;lib/activation.jar src/org/greenstone/gatherer/cdm/*.java
    165 "%JAVACPATH%\javac.exe" -d classes/ -sourcepath src/ -classpath classes/;lib/apache.jar;lib/qfslib.jar;lib/mail.jar;lib/activation.jar src/org/greenstone/gatherer/checklist/*.java
    166165"%JAVACPATH%\javac.exe" -d classes/ -sourcepath src/ -classpath classes/;lib/apache.jar;lib/qfslib.jar;lib/mail.jar;lib/activation.jar src/org/greenstone/gatherer/collection/*.java
    167166"%JAVACPATH%\javac.exe" -d classes/ -sourcepath src/ -classpath classes/;lib/apache.jar;lib/qfslib.jar;lib/mail.jar;lib/activation.jar src/org/greenstone/gatherer/feedback/*.java
  • trunk/gli/makegli.sh

    r8580 r8884  
    156156$javacpath -deprecation -d classes/ -sourcepath src/ -classpath classes/:lib/apache.jar:lib/qfslib.jar:lib/mail.jar:lib/activation.jar src/org/greenstone/gatherer/*.java
    157157$javacpath -deprecation -d classes/ -sourcepath src/ -classpath classes/:lib/apache.jar:lib/qfslib.jar:lib/mail.jar:lib/activation.jar src/org/greenstone/gatherer/cdm/*.java
    158 $javacpath -deprecation -d classes/ -sourcepath src/ -classpath classes/:lib/apache.jar:lib/qfslib.jar:lib/mail.jar:lib/activation.jar src/org/greenstone/gatherer/checklist/*.java
    159158$javacpath -deprecation -d classes/ -sourcepath src/ -classpath classes/:lib/apache.jar:lib/qfslib.jar:lib/mail.jar:lib/activation.jar src/org/greenstone/gatherer/collection/*.java
    160159$javacpath -deprecation -d classes/ -sourcepath src/ -classpath classes/:lib/apache.jar:lib/qfslib.jar:lib/mail.jar:lib/activation.jar src/org/greenstone/gatherer/feedback/*.java
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexManager.java

    r8802 r8884  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.checklist.CheckList;
    3938import org.greenstone.gatherer.gui.GComboBox;
    4039import org.greenstone.gatherer.gui.GLIButton;
    4140import org.greenstone.gatherer.metadata.MetadataElement;
    4241import org.greenstone.gatherer.metadata.MetadataSetManager;
     42import org.greenstone.gatherer.util.CheckList;
    4343import org.greenstone.gatherer.util.StaticStrings;
    4444import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/cdm/SuperCollectionManager.java

    r8590 r8884  
    3636import org.greenstone.gatherer.Dictionary;
    3737import org.greenstone.gatherer.Gatherer;
    38 import org.greenstone.gatherer.checklist.CheckList;
    39 import org.greenstone.gatherer.checklist.CheckListEntry;
    4038import org.greenstone.gatherer.collection.BasicCollectionConfiguration;
     39import org.greenstone.gatherer.util.CheckList;
     40import org.greenstone.gatherer.util.CheckListEntry;
    4141import org.greenstone.gatherer.util.StaticStrings;
    4242import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/collection/ExportCollectionPrompt.java

    r8805 r8884  
    4747import org.greenstone.gatherer.Dictionary;
    4848import org.greenstone.gatherer.Gatherer;
    49 import org.greenstone.gatherer.checklist.CheckList;
    50 import org.greenstone.gatherer.checklist.CheckListEntry;
    5149import org.greenstone.gatherer.gui.GLIButton;
    5250import org.greenstone.gatherer.gui.ModalDialog;
     
    5654import org.greenstone.gatherer.shell.GShellListener;
    5755import org.greenstone.gatherer.util.ArrayTools;
     56import org.greenstone.gatherer.util.CheckList;
     57import org.greenstone.gatherer.util.CheckListEntry;
    5858import org.greenstone.gatherer.util.StaticStrings;
    5959import org.greenstone.gatherer.util.Utility;
  • trunk/gli/src/org/greenstone/gatherer/gems/GEMSPreferences.java

    r8834 r8884  
    3939import org.greenstone.gatherer.Gatherer;
    4040import org.greenstone.gatherer.cdm.LanguageManager;
    41 import org.greenstone.gatherer.checklist.CheckList;
    4241import org.greenstone.gatherer.collection.Collection;
    4342import org.greenstone.gatherer.gui.tree.DragTree;
     
    5958    static final private String TRUE = "true";
    6059
    61     private CheckList warning_preferences_check_list;
     60    // private CheckList warning_preferences_check_list;
    6261    private EmailField email_field;
    6362    private JButton apply_button;
  • trunk/gli/src/org/greenstone/gatherer/gui/Preferences.java

    r8813 r8884  
    4141import org.greenstone.gatherer.cdm.LanguageManager;
    4242import org.greenstone.gatherer.cdm.PluginManager;
    43 import org.greenstone.gatherer.checklist.CheckList;
    44 import org.greenstone.gatherer.checklist.CheckListEntry;
    4543import org.greenstone.gatherer.collection.Collection;
    4644import org.greenstone.gatherer.gui.tree.DragTree;
    4745import org.greenstone.gatherer.util.ArrayTools; // just for debug
     46import org.greenstone.gatherer.util.CheckList;
     47import org.greenstone.gatherer.util.CheckListEntry;
    4848import org.greenstone.gatherer.util.StaticStrings;
    4949import org.greenstone.gatherer.util.Utility;
Note: See TracChangeset for help on using the changeset viewer.