Ignore:
Timestamp:
2001-02-27T16:15:59+13:00 (23 years ago)
Author:
say1
Message:

started work on the Java server. still many hacks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/util/NzdlCorbaFactory.java

    r2055 r2077  
    4444    corbatext_tarrayHolder arrayHolder = new corbatext_tarrayHolder( array );
    4545    return arrayHolder;
     46  }
     47
     48  public static Set  toSet( corbatext_t [] _configLines ) {
     49    HashSet set = new HashSet();
     50      for (int i=0; i<_configLines.length; i++) {
     51    set.add(NzdlCorbaFactory.toString(_configLines[i]));
     52      }
     53      return set;
    4654  }
    4755
Note: See TracChangeset for help on using the changeset viewer.