Changeset 13585 for trunk


Ignore:
Timestamp:
2007-01-12T13:37:35+13:00 (17 years ago)
Author:
mdewsnip
Message:

Made all CollectionManager variables static in preparation for making it a fully static class.

File:
1 edited

Legend:

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

    r13584 r13585  
    8484{
    8585    /** Are we currently in the process of building? */
    86     private boolean building = false;
     86    static private boolean building = false;
    8787    /** Are we currently in the process of importing? */
    88     private boolean importing = false;
     88    static private boolean importing = false;
    8989    /** The objects listening for CollectionContentsChanged events. */
    90     private ArrayList collection_contents_changed_listeners = new ArrayList();
     90    static private ArrayList collection_contents_changed_listeners = new ArrayList();
    9191    /** The collection this manager is managing! */
    9292    static private Collection collection = null;
     
    9494    static private CollectionTree collection_tree = null;
    9595    /** The collection tree model. */
    96     private CollectionTreeModel collection_tree_model = null;
     96    static private CollectionTreeModel collection_tree_model = null;
    9797    /** An inner class listener responsible for noting tree changes and resetting saved when they occur. */
    98     private FMTreeModelListener fm_tree_model_listener = null;
     98    static private FMTreeModelListener fm_tree_model_listener = null;
    9999    /** The monitor resposible for parsing the build process. */
    100     private GShellProgressMonitor build_monitor = null;
     100    static private GShellProgressMonitor build_monitor = null;
    101101    /** The monitor resposible for parsing the import process. */
    102     private GShellProgressMonitor import_monitor = null;
     102    static private GShellProgressMonitor import_monitor = null;
    103103
    104104    /** Whether we have downloaded the collection configurations in this session, when using a remote Greenstone. */
Note: See TracChangeset for help on using the changeset viewer.