Hi, I've a class, which looks like:
public class Tree {
private String label;
private int level;
private Tree childRef;
private Tree siblingRef;
private Tree startRef;
}
I'd like to diplay this data structure on my JSP page. Its a trick, as
recursion is not possible in JSP as compared to what we can do in a normal
class, any idea how this can be done?
Thanks,
--
Vinit Sharma
IBM

