Changeset 2467 for trunk/java-client/org


Ignore:
Timestamp:
2001-05-23T23:10:39+12:00 (23 years ago)
Author:
say1
Message:

added the NzdlDocumentInfo and DocumentInfoDialog classes, mainly to inform myself about how the metadata works so I can understand the new metadata changes.

Location:
trunk/java-client/org/nzdl/gsdl
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/Makefile

    r2278 r2467  
    99  SimpleGraphicalClient.class\
    1010  CollectionInfoDialog.class\
     11  DocumentInfoDialog.class
    1112
    1213all : $(CLASSES)
  • trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/SearchPanel.java

    r2319 r2467  
    397397      StringReader sr = new StringReader(nzdl.getDocument(result.getCollectionName(),  result.getDocID()));
    398398
     399      {
     400        // TODO find a more graceful place to display this info
     401        DocumentInfoDialog did = new DocumentInfoDialog(windowParent, result.getCollectionName(), result.getDocID(), csModel);
     402      }
     403
    399404      if (NzdlPreferences.getInstance().getBoolean(NzdlConstants.RAW_TEXT))
    400405          // display the document as raw text
  • trunk/java-client/org/nzdl/gsdl/hli/Query.java

    r2220 r2467  
    11/*
    2  *    TODO.java
     2 *    Query.java
    33 *    Copyright (C) 2000 Stuart Yeates
    44 *
  • trunk/java-client/org/nzdl/gsdl/service/Makefile

    r2284 r2467  
    1414
    1515CLASSFILES=NzdlCollectionInfo.class \
     16      NzdlDocumentInfo.class \
    1617          NzdlQuery.class \
    1718          NzdlQueryHit.class \
  • trunk/java-client/org/nzdl/gsdl/service/NzdlServiceClient.java

    r2339 r2467  
    122122   */
    123123  public Set getCollectionSet( ) {
    124     System.err.println("Client::getCollectionSet() start");
     124    //System.err.println("Client::getCollectionSet() start");
    125125    corbaComErrorHolder error = NzdlCorbaFactory.createComErrorHolder();
    126126    corbatext_tarrayHolder c_collSet = NzdlCorbaFactory.createCorbaTextArrayHolder();
     
    135135      System.err.println("CORBA error:" + error.value.value());
    136136    }
    137     System.err.println("Client::getCollectionSet() end " + error.value.value());
     137    //System.err.println("Client::getCollectionSet() end " + error.value.value());
    138138    return collSet ;
    139139  }
Note: See TracChangeset for help on using the changeset viewer.