Changeset 11542 for trunk


Ignore:
Timestamp:
2006-03-30T11:02:39+12:00 (18 years ago)
Author:
kjdon
Message:

changed how the owner is set to be like plugins - now we get a header for each base class in the arg configuration panel. but do we actually want this????

File:
1 edited

Legend:

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

    r11282 r11542  
    104104            existing_argument.setRequired(base_argument.isRequired());
    105105            existing_argument.setType(base_argument.getType());
     106            existing_argument.setOwner(base_argument.getOwner());
    106107            existing_argument.setHiddenGLI(base_argument.isHiddenGLI());
    107108        }
     
    111112            // The trick thing is that we have to create a new element in the DOM as well.
    112113            Argument new_argument = base_argument.copy();
    113             new_argument.setOwner(name);
     114            //new_argument.setOwner(name);
    114115            Element argument_element = CollectionDesignManager.collect_config.document.createElement(StaticStrings.OPTION_ELEMENT);
    115116            argument_element.setAttribute(StaticStrings.NAME_ATTRIBUTE, base_argument_name);
Note: See TracChangeset for help on using the changeset viewer.