D:\Sam\InterviewsMaterial\SiteWorx\SiteWorxTest\src\java\linked_list_using_swing_tree\SamDefaultMutableTreeNode.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 package linked_list_using_swing_tree;
 6 
 7 import javax.swing.tree.DefaultMutableTreeNode;
 8 
 9 /**
10  *
11  * @author sameldin
12  */
13 
14 public class SamDefaultMutableTreeNode extends DefaultMutableTreeNode
15 {
16     public SamDefaultMutableTreeNode(NodeInformationDAO passedNodeInformationDAO)
17     {
18         super(passedNodeInformationDAO);   
19     }
20 }
21