Changeset 4020


Ignore:
Timestamp:
2003-03-28T09:34:20+12:00 (21 years ago)
Author:
kjdon
Message:

added new method to create a path from an array of links

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/util/GSPath.java

    r3235 r4020  
    8686    }
    8787
     88    static public String createPath(String [] links) {
     89    String path = links[0];
     90    for (int i=1; i<links.length; i++) {
     91        path = appendLink(path, links[i]);
     92    }
     93    return path;
     94    }
    8895}
    8996
Note: See TracChangeset for help on using the changeset viewer.