Ignore:
Timestamp:
2005-07-13T11:12:11+12:00 (19 years ago)
Author:
mdewsnip
Message:

New code for "incremental" building, by Matthew Whyte.

I've only had time to look at this briefly; I've fixed a few obvious problems but I imagine this will be pretty flaky for a while.

File:
1 edited

Legend:

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

    r10079 r10237  
    794794
    795795        // Listeners
    796         add.addActionListener(new AddListener());
     796        add.addActionListener(new AddListener()); //all_change_listener is listening to the ArgumentConfiguration
    797797        configure.addActionListener(new ConfigureListener());
    798798        MoveListener ml = new MoveListener();
    799799        //move_bottom_button.addActionListener(ml);
    800800        move_down_button.addActionListener(ml);
     801        move_down_button.addActionListener(CollectionDesignManager.all_change_listener);
    801802        //move_top_button.addActionListener(ml);
    802803        move_up_button.addActionListener(ml);
     804        move_up_button.addActionListener(CollectionDesignManager.all_change_listener);
    803805        plugin.addItemListener(picl);
    804806        remove.addActionListener(new RemoveListener());
     807        remove.addActionListener(CollectionDesignManager.all_change_listener);
    805808        plugin_list.addMouseListener(new ClickListener());
    806809        plugin_list.addListSelectionListener(new ListListener());
Note: See TracChangeset for help on using the changeset viewer.