Changeset 9035


Ignore:
Timestamp:
2005-02-15T11:05:17+13:00 (19 years ago)
Author:
mdewsnip
Message:

Renamed CreationTask to be more accurate.

File:
1 edited

Legend:

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

    r9018 r9035  
    653653        Gatherer.c_man.closeCollection();
    654654        }
    655        
    656         result = Gatherer.c_man.loadCollection(filename);
     655
     656        Gatherer.c_man.loadCollection(filename);
     657
    657658        filename = null;
    658659    }
     
    687688
    688689        // Create new collection.
    689         CreationTask task = new CreationTask(ncd_prompt, ncm_prompt);
    690         task.start();
     690        NewCollectionTask new_collection_task = new NewCollectionTask(ncd_prompt, ncm_prompt);
     691        new_collection_task.start();
    691692    }
    692693    // Done
     
    696697
    697698
    698     private class CreationTask
     699    private class NewCollectionTask
    699700        extends Thread
    700701    {
     
    702703    private NewCollectionMetadataPrompt ncm_prompt = null;
    703704
    704     public CreationTask(NewCollectionDetailsPrompt ncd_prompt, NewCollectionMetadataPrompt ncm_prompt)
     705    public NewCollectionTask(NewCollectionDetailsPrompt ncd_prompt, NewCollectionMetadataPrompt ncm_prompt)
    705706    {
    706707        this.ncd_prompt = ncd_prompt;
Note: See TracChangeset for help on using the changeset viewer.