Beispiel #1
0
 public String toString(BedLine tokens) {
   String s = tokens.get(index);
   if (s == null) s = "";
   return s + (next == null ? "" : next.toString(tokens));
 }