Changeset 25691 for main


Ignore:
Timestamp:
2012-05-29T11:07:53+12:00 (12 years ago)
Author:
sjm84
Message:

Added a call that gets the classifier style from the database

File:
1 edited

Legend:

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

    r25690 r25691  
    120120    }
    121121
     122    protected String getChildType(String node_id)
     123    {
     124        DBInfo info = this.coll_db.getInfo(node_id);
     125        if (info == null)
     126        {
     127            return null;
     128        }
     129        return info.getInfo("childtype");
     130    }
     131
    122132    /**
    123133     * returns the document type of the doc that the specified node belongs to.
Note: See TracChangeset for help on using the changeset viewer.