D:\CurrentProjects\SearsInterviewCode\src\java\binary_tree_reflection\Product.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 Product
13 {
14 private final int id;
15     /** Creates a new instance of Product */
16         public Product (int id) 
17         {
18                 this.id = id;
19         }
20     /**
21      *
22      */
23      public static void main (String[] args)
24     {
25          Product myProduct   = new Product(12);
26     }
27 
28 
29 }
30 
31