Changeset 12279


Ignore:
Timestamp:
2006-07-24T11:28:02+12:00 (18 years ago)
Author:
kjdon
Message:

no longer display 'plugin', or 'classify' in the list of assigned plugins and classifiers

File:
1 edited

Legend:

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

    r12247 r12279  
    5555    protected boolean is_abstract = false;
    5656    protected ArgumentContainer super_container;
    57     // should be set by the constructor
    58     protected String display_name = "Unknown";
    5957    protected String description;
    6058    protected String name;
     
    272270    }
    273271
    274     StringBuffer text;
    275     if (isAssigned()) {
    276         text = new StringBuffer(display_name);
    277     } else {
    278         text = new StringBuffer("#");
    279         text.append(display_name);
    280     }
    281     text.append(" ");
     272    StringBuffer text = new StringBuffer(" ");
     273    if (!isAssigned()) {
     274        text.append("#");
     275    }
    282276    text.append(name);
    283277
Note: See TracChangeset for help on using the changeset viewer.