D:\CurrentProjects\SearsInterviewCode\src\java\binary_tree_reflection\Node.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 
 6 package binary_tree_reflection;
 7 
 8 /**
 9  *
10  * @author sameldin
11  */
12 public class Node
13 {
14     Node left;
15     Node right;
16     Product nodeProduct;
17 
18     public Node(int value) {
19         nodeProduct = new Product(value);
20     }
21 }
22 
23