Ignore:
Timestamp:
2010-06-26T16:11:41+12:00 (14 years ago)
Author:
ak19
Message:
  1. AbstractBrowse's method extractExtraClassifierInfo() is now package access and static (it never used member variables anyway) so that the FedoraServiceProxy class can reuse it in entirety.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/service/AbstractBrowse.java

    r15326 r22306  
    9494
    9595    }
    96 
    9796 
    9897        // check that there are classifiers specified
     
    102101            return false;
    103102        }
    104    
     103
    105104    // get the display and format elements from the coll config file for
    106105    // the classifiers
    107106    extractExtraClassifierInfo(info, extra_info);
    108    
     107
    109108        // short_service_info_ - the browse one
    110109        Element cb_service = this.doc.createElement(GSXML.SERVICE_ELEM);
     
    249248
    250249    /** this looks for any classifier specific display or format info from extra_info and adds it in to the correct place in info */
    251     protected boolean extractExtraClassifierInfo(Element info, Element extra_info) {
     250    static boolean extractExtraClassifierInfo(Element info, Element extra_info) {
    252251   
    253252    if (extra_info == null) {
Note: See TracChangeset for help on using the changeset viewer.