Re: Tree display in JSP page

2006-04-09 Thread Laurie Harper
AIL PROTECTED] Sent: Thursday, 6 April 2006 11:48 p.m. To: Struts Users Mailing List Subject: Tree display in JSP page 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 sta

RE: Tree display in JSP page

2006-04-06 Thread Richard Allwood
the position within the Tree) public interface TreeNode Cheers, Richard. -Original Message- From: Vinit Sharma [mailto:[EMAIL PROTECTED] Sent: Thursday, 6 April 2006 11:48 p.m. To: Struts Users Mailing List Subject: Tree display in JSP page Hi, I've a class, which looks like: publ

Tree display in JSP page

2006-04-06 Thread Vinit Sharma
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