Hashtable htLinks = new Hashtable();
for (int i = 0; i < list.size(); i++) {
StringTree node = (StringTree) list.get(i);
if (i != 0)
stb.append(",");
stb.append(node.toJSONObject("" + i, htLinks));
}
stb.append("]");
list = null;
return stb.toString();
}