Changeset 7110


Ignore:
Timestamp:
2004-03-22T15:45:32+12:00 (20 years ago)
Author:
kjdon
Message:

use min and max values when creating a new plugin from an existing one

File:
1 edited

Legend:

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

    r6770 r7110  
    9292            existing_argument.setRequired(base_argument.isRequired());
    9393            existing_argument.setType(base_argument.getType());
     94            existing_argument.setMinimum(base_argument.getMinimum());
     95            existing_argument.setMaximum(base_argument.getMaximum());
     96   
     97           
    9498        }
    9599        // No existing argument. Copy base_argument and add it, but do not set its assigned flag. That should be set the first time its changed by the user.
Note: See TracChangeset for help on using the changeset viewer.