Ignore:
Timestamp:
2010-03-26T18:37:14+13:00 (14 years ago)
Author:
ak19
Message:

Browse takes a list of classifierIDs, not a single one.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/gs3-webservices-java-client/trunk/src/GS3DemoClient/org/greenstone/gs3client/GS3JavaClient.java

    r15731 r21835  
    736736            JEditorPane information = new JEditorPane();
    737737            information.setEditable(false);
    738             information.setContentType("text/html");
     738            information.setContentType("text/html");
    739739            information.setText(collDataEl.info());
    740740           
     
    929929     * to be retrieved. */
    930930    public void doBrowse(ClassifierData classifier) {
     931        String[] classifierNames = { classifier.name };
    931932        String response = dlAPIA.retrieveBrowseStructure(
    932                 this.colName, this.serviceName, classifier.name);
     933                this.colName, this.serviceName, classifierNames);
    933934       
    934935        browseResponseObject.clear();
Note: See TracChangeset for help on using the changeset viewer.